mirror of git://sourceware.org/git/glibc.git
Update.
* inet/rcmd.c (iruserok2): Initialize isbad to -1 [PR libc/1405]. Patch by J. Richard Sladkey <jrs@world.std.com>.
This commit is contained in:
parent
4d3a563f2e
commit
4dba81eafc
|
@ -1,5 +1,8 @@
|
|||
1999-10-18 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* inet/rcmd.c (iruserok2): Initialize isbad to -1 [PR libc/1405].
|
||||
Patch by J. Richard Sladkey <jrs@world.std.com>.
|
||||
|
||||
* scripts/config.sub: Update from latest autoconf version.
|
||||
* scripts/config.guess: Likewise.
|
||||
|
||||
|
|
|
@ -349,7 +349,7 @@ iruserok2 (raddr, superuser, ruser, luser, rhost)
|
|||
const char *ruser, *luser, *rhost;
|
||||
{
|
||||
FILE *hostf = NULL;
|
||||
int isbad;
|
||||
int isbad = -1;
|
||||
|
||||
if (!superuser)
|
||||
hostf = iruserfopen (_PATH_HEQUIV, 0);
|
||||
|
|
Loading…
Reference in New Issue