diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
| commit | 76b5366091f76c9bc73570149ef5055648fc2c39 (patch) | |
| tree | 590d020e0f2a5bea6e09d66d951a674443b21d67 /lib/libskey/skey_crypt.c | |
| parent | 4b4d01da6f07f7754ff6a6e4f5223e9f0984d1a6 (diff) | |
Diffstat (limited to 'lib/libskey/skey_crypt.c')
| -rw-r--r-- | lib/libskey/skey_crypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libskey/skey_crypt.c b/lib/libskey/skey_crypt.c index 4e3a141333a56..6ed6bdb154ae1 100644 --- a/lib/libskey/skey_crypt.c +++ b/lib/libskey/skey_crypt.c @@ -3,13 +3,12 @@ #include <string.h> #include <stdio.h> #include <pwd.h> -#include <unistd.h> #include "skey.h" /* skey_crypt - return encrypted UNIX passwd if s/key or regular password ok */ -const char *skey_crypt(pp, salt, pwd, pwok) +char *skey_crypt(pp, salt, pwd, pwok) char *pp; char *salt; struct passwd *pwd; @@ -17,6 +16,7 @@ int pwok; { struct skey skey; char *p; + char *crypt(); /* Try s/key authentication even when the UNIX password is permitted. */ |
