diff options
author | obrien <obrien@FreeBSD.org> | 1998-10-26 11:54:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-10-26 11:54:36 +0000 |
commit | 9c58f68181f789e2fb43d431bb3c732e8c1c9057 (patch) | |
tree | 33b175204734fdd5418ec2f894b96dd7c1f68169 /lib/libskey/skeylogin.c | |
parent | 873d7be4840474ccc52a6f5481204058dab44ca8 (diff) | |
download | FreeBSD-src-9c58f68181f789e2fb43d431bb3c732e8c1c9057.zip FreeBSD-src-9c58f68181f789e2fb43d431bb3c732e8c1c9057.tar.gz |
Quiet many compiler warnings. Still fails -Wconversion in one case.
Required because: -Werror is in Makefile
Diffstat (limited to 'lib/libskey/skeylogin.c')
-rw-r--r-- | lib/libskey/skeylogin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libskey/skeylogin.c b/lib/libskey/skeylogin.c index 96de96f..52be8ea 100644 --- a/lib/libskey/skeylogin.c +++ b/lib/libskey/skeylogin.c @@ -1,4 +1,4 @@ -/* Login code for S/KEY Authentication. S/KEY is a trademark +* Login code for S/KEY Authentication. S/KEY is a trademark * of Bellcore. * * Mink is the former name of the S/KEY authentication system. @@ -22,11 +22,11 @@ #include "skey.h" #include "pathnames.h" -static char *skipspace(); +static char *skipspace __P((char *)); #define setpriority(x,y,z) /* nothing */ -static char *month[12] = { +static const char *month[12] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; |