1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
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:
Ulrich Drepper
2003-10-27 08:44:53 +00:00
parent a14f121d3e
commit 11df531f59
2 changed files with 5 additions and 9 deletions

View File

@ -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);
}