mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 17:53:37 +08:00
Suppress GCC 6 warning about ambiguous 'else' with -Wparentheses
This commit is contained in:
parent
f8da6e93a6
commit
df1cf48777
@ -1,3 +1,8 @@
|
|||||||
|
2016-04-15 Yvan Roux <yvan.roux@linaro.org>
|
||||||
|
|
||||||
|
* stdlib/setenv.c (unsetenv): Fix ambiguous 'else'.
|
||||||
|
* nis/nis_call.c (nis_server_cache_add): Likewise.
|
||||||
|
|
||||||
2016-04-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
2016-04-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/sysdep.h: Include kernel-features.h.
|
* sysdeps/unix/sysv/linux/sysdep.h: Include kernel-features.h.
|
||||||
|
@ -680,6 +680,7 @@ nis_server_cache_add (const_nis_name name, int search_parent,
|
|||||||
/* Choose which entry should be evicted from the cache. */
|
/* Choose which entry should be evicted from the cache. */
|
||||||
loc = &nis_server_cache[0];
|
loc = &nis_server_cache[0];
|
||||||
if (*loc != NULL)
|
if (*loc != NULL)
|
||||||
|
{
|
||||||
for (i = 1; i < 16; ++i)
|
for (i = 1; i < 16; ++i)
|
||||||
if (nis_server_cache[i] == NULL)
|
if (nis_server_cache[i] == NULL)
|
||||||
{
|
{
|
||||||
@ -690,6 +691,7 @@ nis_server_cache_add (const_nis_name name, int search_parent,
|
|||||||
|| ((*loc)->uses == nis_server_cache[i]->uses
|
|| ((*loc)->uses == nis_server_cache[i]->uses
|
||||||
&& (*loc)->expires > nis_server_cache[i]->expires))
|
&& (*loc)->expires > nis_server_cache[i]->expires))
|
||||||
loc = &nis_server_cache[i];
|
loc = &nis_server_cache[i];
|
||||||
|
}
|
||||||
old = *loc;
|
old = *loc;
|
||||||
*loc = new;
|
*loc = new;
|
||||||
|
|
||||||
|
@ -278,6 +278,7 @@ unsetenv (const char *name)
|
|||||||
ep = __environ;
|
ep = __environ;
|
||||||
if (ep != NULL)
|
if (ep != NULL)
|
||||||
while (*ep != NULL)
|
while (*ep != NULL)
|
||||||
|
{
|
||||||
if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
|
if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
|
||||||
{
|
{
|
||||||
/* Found it. Remove this pointer by moving later ones back. */
|
/* Found it. Remove this pointer by moving later ones back. */
|
||||||
@ -290,6 +291,7 @@ unsetenv (const char *name)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
++ep;
|
++ep;
|
||||||
|
}
|
||||||
|
|
||||||
UNLOCK;
|
UNLOCK;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user