diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-23 21:42:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-23 21:42:40 +0000 |
commit | 5e31f19a9c87b3468d34674b11470d6346e16e78 (patch) | |
tree | fcbb2441f5b530c5644dade113ac09becf1d5d5d /lib/libskey/skeylogin.c | |
parent | 1eeb71bf8fbf709377158a50281edf62a61710ea (diff) |
skeyzero() never uses its 2nd arg so remove it. Since the only thing
that calls skeyzero() is skeyinit and I just updated the libskey
major I am not going to bump the major again here...
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 166670352af..aa762237fda 100644 --- a/lib/libskey/skeylogin.c +++ b/lib/libskey/skeylogin.c @@ -10,7 +10,7 @@ * * S/Key verification check, lookups, and authentication. * - * $OpenBSD: skeylogin.c,v 1.38 2001/06/20 22:15:45 millert Exp $ + * $OpenBSD: skeylogin.c,v 1.39 2001/06/23 21:42:39 millert Exp $ */ #include <sys/param.h> @@ -678,10 +678,10 @@ skey_authenticate(username) * The database file is always closed by this call. */ int -skeyzero(mp, response) +skeyzero(mp) struct skey *mp; - char *response; { + /* * Seek to the right place and write comment character * which effectively zero's out the entry. |