diff options
author | 2002-06-27 22:21:22 +0000 | |
---|---|---|
committer | 2002-06-27 22:21:22 +0000 | |
commit | a793e16ce633f09d113dfd025577fe67b4a16f4b (patch) | |
tree | 79d2f2ce22b4a2df97b5b2e0820a2953657f177b /lib/libc | |
parent | move protos (diff) | |
download | wireguard-openbsd-a793e16ce633f09d113dfd025577fe67b4a16f4b.tar.xz wireguard-openbsd-a793e16ce633f09d113dfd025577fe67b4a16f4b.zip |
KNF
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/auth_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/auth_subr.c b/lib/libc/gen/auth_subr.c index c99233d62c9..43e10b9b4fe 100644 --- a/lib/libc/gen/auth_subr.c +++ b/lib/libc/gen/auth_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth_subr.c,v 1.10 2002/05/24 21:22:37 deraadt Exp $ */ +/* $OpenBSD: auth_subr.c,v 1.11 2002/06/27 22:21:22 deraadt Exp $ */ /*- * Copyright (c) 1995,1996,1997 Berkeley Software Design, Inc. @@ -960,7 +960,7 @@ _auth_spool(auth_session_t *as, int fd) * Go ahead and convert newlines into NULs to allow * easy scanning of the file. */ - while(r-- > 0) + while (r-- > 0) if (*b++ == '\n') b[-1] = '\0'; } |