diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-15 19:57:01 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-15 19:57:01 +0000 |
commit | 34a5a573a82135489e7fe007d17bfd186266f922 (patch) | |
tree | a9f1708e975a4a3b0ad3c21d0d04c8eecd1566ce /kerberosIV/des/fcrypt.c | |
parent | 23e9e461c7b4cba1f7cd31804393afd34c290b65 (diff) |
Rename crypt() entry in libdes to des_crypt
Diffstat (limited to 'kerberosIV/des/fcrypt.c')
-rw-r--r-- | kerberosIV/des/fcrypt.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/kerberosIV/des/fcrypt.c b/kerberosIV/des/fcrypt.c index 2452c7a90d6..d43d0d72853 100644 --- a/kerberosIV/des/fcrypt.c +++ b/kerberosIV/des/fcrypt.c @@ -532,24 +532,12 @@ static unsigned const char cov_2char[64]={ }; #ifdef _DES_PROTO -#if defined(PERL5) || defined(lint) char *des_crypt(char *buf,char *salt); #else -char *crypt(char *buf,char *salt); -#endif -#else -#ifdef PERL5 char *des_crypt(); -#else -char *crypt(); -#endif #endif -#if defined(PERL5) || defined(lint) char *des_crypt(buf,salt) -#else -char *crypt(buf,salt) -#endif char *buf; char *salt; { @@ -564,7 +552,7 @@ char *salt; unsigned char c,u; /* eay 25/08/92 - * If you call crypt("pwd","*") as often happens when you + * If you call des_crypt("pwd","*") as often happens when you * have * as the pwd field in /etc/passwd, the function * returns *\0XXXXXXXXX * The \0 makes the string look like * so the pwd "*" would |