From 11df531f59482469dd5482e8d397d89ce4acd6f5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 27 Oct 2003 08:44:53 +0000 Subject: Update. 2003-10-27 Ulrich Drepper * inet/rcmd.c (__validuser2_sa): Remove unnecessary code to skip rest of line. We use getline which means this cannot happen. --- inet/rcmd.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'inet') 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); } -- cgit v1.2.3