diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2006-04-25 05:45:21 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2006-04-25 05:45:21 +0000 |
commit | fbdaad4027577812d857e2365a1dc83a879384e5 (patch) | |
tree | 780e5af65ebb76836c04b57a0665422b3a708282 /usr.bin/ftp/ruserpass.c | |
parent | a16acc46edc2de105156e6e78405805b1c2e7aa5 (diff) |
two strtol calls that were begging to be converted to strtonum
Diffstat (limited to 'usr.bin/ftp/ruserpass.c')
-rw-r--r-- | usr.bin/ftp/ruserpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ftp/ruserpass.c b/usr.bin/ftp/ruserpass.c index de58d4f79ff..511f65d9973 100644 --- a/usr.bin/ftp/ruserpass.c +++ b/usr.bin/ftp/ruserpass.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ruserpass.c,v 1.18 2004/07/20 03:50:26 deraadt Exp $ */ +/* $OpenBSD: ruserpass.c,v 1.19 2006/04/25 05:45:20 tedu Exp $ */ /* $NetBSD: ruserpass.c,v 1.14 1997/07/20 09:46:01 lukem Exp $ */ /* @@ -35,7 +35,7 @@ static char sccsid[] = "@(#)ruserpass.c 8.4 (Berkeley) 4/27/95"; #else #ifndef SMALL -static char rcsid[] = "$OpenBSD: ruserpass.c,v 1.18 2004/07/20 03:50:26 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: ruserpass.c,v 1.19 2006/04/25 05:45:20 tedu Exp $"; #endif /* SMALL */ #endif #endif /* not lint */ |