public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-05-12 19:32 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-05-12 19:32 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=e172546c5464d57aa3153daaafc6a537180af97c

commit e172546c5464d57aa3153daaafc6a537180af97c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2024-02-09 17:29 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2024-02-09 17:29 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=003ff802ab1ffe0ee2f4aed158207765f3e3a7c6

commit 003ff802ab1ffe0ee2f4aed158207765f3e3a7c6
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison
    
    clang issues a 'equality comparison with extraneous parentheses
    [-Werror,-Wparentheses-equality]' in this.  Instead of suppress
    the warning, just follow the next comparison style.

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2024-02-07 14:05 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2024-02-07 14:05 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a76dd3555bd08c773887108f274dd92f4b41a615

commit a76dd3555bd08c773887108f274dd92f4b41a615
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison
    
    clang issues a 'equality comparison with extraneous parentheses
    [-Werror,-Wparentheses-equality]' in this.  Instead of suppress
    the warning, just follow the next comparison style.

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2024-01-29 17:55 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2024-01-29 17:55 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f284740a9701e738e025554c61193fbaf8fd3b5d

commit f284740a9701e738e025554c61193fbaf8fd3b5d
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison
    
    clang issues a 'equality comparison with extraneous parentheses
    [-Werror,-Wparentheses-equality]' in this.  Instead of suppress
    the warning, just follow the next comparison style.

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2023-12-21 18:51 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2023-12-21 18:51 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8ef7704b5dd29e0603425f5ab2b681d258c3cdb2

commit 8ef7704b5dd29e0603425f5ab2b681d258c3cdb2
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison
    
    clang issues a 'equality comparison with extraneous parentheses
    [-Werror,-Wparentheses-equality]' in this.  Instead of suppress
    the warning, just follow the next comparison style.

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2023-09-28 17:50 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2023-09-28 17:50 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=87db8df7028b379970acc68cddd4f578adae166a

commit 87db8df7028b379970acc68cddd4f578adae166a
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison
    
    clang issues a 'equality comparison with extraneous parentheses
    [-Werror,-Wparentheses-equality]' in this.  Instead of suppress
    the warning, just follow the next comparison style.

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2023-08-30 12:35 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2023-08-30 12:35 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9b79644c6024a3418a55374c5982de2c776667d3

commit 9b79644c6024a3418a55374c5982de2c776667d3
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index b0b29e09a7..1072c97015 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2023-02-09 19:46 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2023-02-09 19:46 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d9153632a37ef0485caa8320b5bec2c5d48e9f7a

commit d9153632a37ef0485caa8320b5bec2c5d48e9f7a
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-10-28 17:39 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-10-28 17:39 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=505341a72c8821495db92769446b3ed4956e0e5c

commit 505341a72c8821495db92769446b3ed4956e0e5c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-10-04 12:57 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-10-04 12:57 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=24fc8272b23ed405e7b2fef61c9b3c7c9957a7ae

commit 24fc8272b23ed405e7b2fef61c9b3c7c9957a7ae
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-06-09 21:18 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 21:18 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7e89a68f61411b5a0308749a7c7028fc90592c5c

commit 7e89a68f61411b5a0308749a7c7028fc90592c5c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-06-09 13:15 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 13:15 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7e89a68f61411b5a0308749a7c7028fc90592c5c

commit 7e89a68f61411b5a0308749a7c7028fc90592c5c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-06-03 14:04 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-06-03 14:04 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=215ad64900e6eb033f33bd5632542d578225e7f5

commit 215ad64900e6eb033f33bd5632542d578225e7f5
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-05-13 14:18 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-05-13 14:18 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5054532a5e7733d10f3dd9ef0763df9ec7c4d63f

commit 5054532a5e7733d10f3dd9ef0763df9ec7c4d63f
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-05-10 18:22 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-05-10 18:22 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c07c10b57a41f519d53c09ccd5c5375c50ad377e

commit c07c10b57a41f519d53c09ccd5c5375c50ad377e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-04-29 14:02 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-04-29 14:02 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=bb5eee30ef681d8a939135f8d53c2133d374bcb0

commit bb5eee30ef681d8a939135f8d53c2133d374bcb0
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-04-04 12:52 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-04-04 12:52 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a8639906b8436928985e155653edafec34bf191b

commit a8639906b8436928985e155653edafec34bf191b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-31 19:05 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-31 19:05 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ed8c69550895965b6ba878a4d630bcc7fd5ce4c7

commit ed8c69550895965b6ba878a4d630bcc7fd5ce4c7
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-29 20:28 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-29 20:28 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3c32eaf5b9cfaf8e4f124468683720b5e7c9af47

commit 3c32eaf5b9cfaf8e4f124468683720b5e7c9af47
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-16 18:01 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-16 18:01 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ed419f2c5dbce21aeeb2d601bb0a58972061b3ed

commit ed419f2c5dbce21aeeb2d601bb0a58972061b3ed
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-15 18:38 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-15 18:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ed419f2c5dbce21aeeb2d601bb0a58972061b3ed

commit ed419f2c5dbce21aeeb2d601bb0a58972061b3ed
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-11 17:23 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-11 17:23 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=657217f2f382d9a176876ce51a6093dae92bffa5

commit 657217f2f382d9a176876ce51a6093dae92bffa5
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

* [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison
@ 2022-03-10 19:22 Adhemerval Zanella
  0 siblings, 0 replies; 23+ messages in thread
From: Adhemerval Zanella @ 2022-03-10 19:22 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=60c4b849b1de7ea09f161ee9f1df8ea0e164096e

commit 60c4b849b1de7ea09f161ee9f1df8ea0e164096e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 10 08:34:01 2022 -0300

    sunrpc: Remove extra parenthesis on comparison

Diff:
---
 sunrpc/key_call.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 8ea4303d7d..584e27fd5d 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -456,7 +456,7 @@ getkeyserv_handle (int vers)
       return kcp->client;
     }
 
-  if ((kcp->client == (CLIENT *) NULL))
+  if (kcp->client == (CLIENT *) NULL)
     /* Use the AF_UNIX transport */
     kcp->client = clnt_create ("/var/run/keyservsock", KEY_PROG, vers, "unix");


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2024-02-09 17:29 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-12 19:32 [glibc/azanella/clang] sunrpc: Remove extra parenthesis on comparison Adhemerval Zanella
  -- strict thread matches above, loose matches on Subject: below --
2024-02-09 17:29 Adhemerval Zanella
2024-02-07 14:05 Adhemerval Zanella
2024-01-29 17:55 Adhemerval Zanella
2023-12-21 18:51 Adhemerval Zanella
2023-09-28 17:50 Adhemerval Zanella
2023-08-30 12:35 Adhemerval Zanella
2023-02-09 19:46 Adhemerval Zanella
2022-10-28 17:39 Adhemerval Zanella
2022-10-04 12:57 Adhemerval Zanella
2022-06-09 21:18 Adhemerval Zanella
2022-06-09 13:15 Adhemerval Zanella
2022-06-03 14:04 Adhemerval Zanella
2022-05-13 14:18 Adhemerval Zanella
2022-05-10 18:22 Adhemerval Zanella
2022-04-29 14:02 Adhemerval Zanella
2022-04-04 12:52 Adhemerval Zanella
2022-03-31 19:05 Adhemerval Zanella
2022-03-29 20:28 Adhemerval Zanella
2022-03-16 18:01 Adhemerval Zanella
2022-03-15 18:38 Adhemerval Zanella
2022-03-11 17:23 Adhemerval Zanella
2022-03-10 19:22 Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).