diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-24 20:45:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-24 20:45:55 +0000 |
commit | 02503c73b4a809f21312fef8bf66cfe5d0f1a50f (patch) | |
tree | 7af078f9c9124a0f489e02aa020d4f667d8bd8de | |
parent | 691fece60c868db47becf5026d06f610252baa09 (diff) |
clean
-rw-r--r-- | usr.sbin/authpf/authpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index afd7d9723e8..6fa150fee87 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.59 2003/06/24 20:44:54 deraadt Exp $ */ +/* $OpenBSD: authpf.c,v 1.60 2003/06/24 20:45:54 deraadt Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -501,7 +501,7 @@ check_luser(char *luserdir, char *luser) /* reuse tmp */ strlcpy(tmp, "\n\n-**- Sorry, you have been banned! -**-\n\n", sizeof(tmp)); - while ((fputs(tmp, stdout) != EOF) && !feof(f)) { + while (fputs(tmp, stdout) != EOF && !feof(f)) { if (fgets(tmp, sizeof(tmp), f) == NULL) { fflush(stdout); return (0); |