mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
2003-10-27 Ulrich Drepper <drepper@redhat.com> * inet/rcmd.c (__validuser2_sa): Remove unnecessary code to skip rest of line. We use getline which means this cannot happen.
This commit is contained in:
parent
a14f121d3e
commit
11df531f59
@ -1,3 +1,8 @@
|
||||
2003-10-27 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* inet/rcmd.c (__validuser2_sa): Remove unnecessary code to skip
|
||||
rest of line. We use getline which means this cannot happen.
|
||||
|
||||
2003-10-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/internal_statvfs.c (__internal_statvfs):
|
||||
|
@ -848,15 +848,6 @@ __validuser2_sa(hostf, ra, ralen, luser, ruser, rhost)
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Skip lines that are too long. */
|
||||
if (strchr (p, '\n') == NULL) {
|
||||
int ch = getc_unlocked (hostf);
|
||||
|
||||
while (ch != '\n' && ch != EOF)
|
||||
ch = getc_unlocked (hostf);
|
||||
continue;
|
||||
}
|
||||
|
||||
for (;*p && !isspace(*p); ++p) {
|
||||
*p = _tolower (*p);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user