diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | inet/rcmd.c | 9 |
2 files changed, 5 insertions, 9 deletions
@@ -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): diff --git a/inet/rcmd.c b/inet/rcmd.c index ad72108b6a..d9645a38a6 100644 --- a/inet/rcmd.c +++ b/inet/rcmd.c @@ -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); } |