Whitespace sync with upstream.

This commit is contained in:
Darren Tucker 2018-02-13 08:25:46 +11:00
parent fbfa6f980d
commit 19edfd4af7

View File

@ -1251,10 +1251,10 @@ do_nologin(struct passwd *pw)
/* /etc/nologin exists. Print its contents if we can and exit. */
logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
if ((f = fopen(nl, "r")) != NULL) {
while (fgets(buf, sizeof(buf), f))
fputs(buf, stderr);
fclose(f);
}
while (fgets(buf, sizeof(buf), f))
fputs(buf, stderr);
fclose(f);
}
exit(254);
}