diff options
Diffstat (limited to 'libexec/ftpd/logutmp.c')
-rw-r--r-- | libexec/ftpd/logutmp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libexec/ftpd/logutmp.c b/libexec/ftpd/logutmp.c index f83ba589b9c..77ec2c2dcb6 100644 --- a/libexec/ftpd/logutmp.c +++ b/libexec/ftpd/logutmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logutmp.c,v 1.5 2003/06/04 16:08:08 deraadt Exp $ */ +/* $OpenBSD: logutmp.c,v 1.6 2003/06/11 14:24:46 deraadt Exp $ */ /* * Portions Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -50,8 +50,7 @@ static int topslot = -1; */ void -login(ut) - UTMP *ut; +login(UTMP *ut) { UTMP ubuf; @@ -90,8 +89,7 @@ login(ut) } int -logout(line) - char *line; +logout(char *line) { UTMP ut; int rval; |