diff options
author | ache <ache@FreeBSD.org> | 1995-12-23 22:02:13 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-12-23 22:02:13 +0000 |
commit | d9157b701be6e3b8109f2a6f902a273aca4ee2cf (patch) | |
tree | 9c80935d314b35c2b6e0a88481c9facc14818b4a /eBones/usr.bin | |
parent | 3be99a55ffecd32ecfa45a807b33d45bf2a13178 (diff) | |
download | FreeBSD-src-d9157b701be6e3b8109f2a6f902a273aca4ee2cf.zip FreeBSD-src-d9157b701be6e3b8109f2a6f902a273aca4ee2cf.tar.gz |
Shut compiler warning
Diffstat (limited to 'eBones/usr.bin')
-rw-r--r-- | eBones/usr.bin/passwd/kpasswd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eBones/usr.bin/passwd/kpasswd.c b/eBones/usr.bin/passwd/kpasswd.c index 56e76a3..5bb09fc 100644 --- a/eBones/usr.bin/passwd/kpasswd.c +++ b/eBones/usr.bin/passwd/kpasswd.c @@ -13,7 +13,7 @@ static char rcsid_kpasswd_c[] = "BonesHeader: /afs/athena.mit.edu/astaff/project/kerberos/src/kadmin/RCS/kpasswd.c,v 4.3 89/09/26 09:33:02 jtkohl Exp "; #endif static const char rcsid[] = - "$Id: kpasswd.c,v 1.1 1995/07/18 16:41:20 mark Exp $"; + "$Id: kpasswd.c,v 1.4 1995/09/07 21:38:55 markm Exp $"; #endif lint /* @@ -207,7 +207,7 @@ void get_pw_new_key(new_key, name, inst, realm, print_realm) bzero((char *) new_key, sizeof(des_cblock)); new_key[0] = (unsigned char) 1; #else - (void) des_string_to_key(pword, new_key); + (void) des_string_to_key(pword, (des_cblock *)new_key); #endif bzero(pword, sizeof(pword)); } |