diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-27 22:21:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-27 22:21:23 +0000 |
commit | 5955123a134cb6c860a5327716fa14b8b1ae5ac1 (patch) | |
tree | a8fe4c30ea91319a10c419eb3ee5b5ccc05b1d74 /lib/libc | |
parent | 230b252713d6b224fa65db1bdee12b5d80b55a09 (diff) |
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'; } |