diff options
author | pst <pst@FreeBSD.org> | 1997-03-08 06:22:51 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1997-03-08 06:22:51 +0000 |
commit | 7b627696630ebf6b0c4e7c153e18193c109e1813 (patch) | |
tree | d8992e5f050167155300b69f6564abdea397a5c4 /lib/libskey/skey_crypt.c | |
parent | 3f5747589b924beb43b34977dbb598ac892e2b0c (diff) | |
download | FreeBSD-src-7b627696630ebf6b0c4e7c153e18193c109e1813.zip FreeBSD-src-7b627696630ebf6b0c4e7c153e18193c109e1813.tar.gz |
API cleanups (use const char * where appropriate)
Cannidate for: 2.2 (please!)
Diffstat (limited to 'lib/libskey/skey_crypt.c')
-rw-r--r-- | lib/libskey/skey_crypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libskey/skey_crypt.c b/lib/libskey/skey_crypt.c index 79e5635..6ed6bdb 100644 --- a/lib/libskey/skey_crypt.c +++ b/lib/libskey/skey_crypt.c @@ -8,9 +8,9 @@ /* skey_crypt - return encrypted UNIX passwd if s/key or regular password ok */ -char *skey_crypt(pp, salt, pwd, pwok) -char *pp; -char *salt; +char *skey_crypt(pp, salt, pwd, pwok) +char *pp; +char *salt; struct passwd *pwd; int pwok; { |