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