diff options
author | markm <markm@FreeBSD.org> | 2001-12-01 18:48:36 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-01 18:48:36 +0000 |
commit | 4cff8701ffec409f9233e48b1ea8f8e2b7444ff6 (patch) | |
tree | 71400e2967814a9272a0137d72b63a3a46db57f7 /crypto/openssl | |
parent | 144609e3310de11b40933f0a8191d178e04b5591 (diff) | |
download | FreeBSD-src-4cff8701ffec409f9233e48b1ea8f8e2b7444ff6.zip FreeBSD-src-4cff8701ffec409f9233e48b1ea8f8e2b7444ff6.tar.gz |
Protect names that are used elsewhere. This fixes WARNS=2 breakage
in crypto telnet.
Diffstat (limited to 'crypto/openssl')
-rw-r--r-- | crypto/openssl/crypto/des/des.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/openssl/crypto/des/des.h b/crypto/openssl/crypto/des/des.h index 6207e08..5b5064a 100644 --- a/crypto/openssl/crypto/des/des.h +++ b/crypto/openssl/crypto/des/des.h @@ -205,10 +205,10 @@ int des_new_random_key(des_cblock *key); void des_init_random_number_generator(des_cblock *seed); void des_rand_data(unsigned char *data, int size); int des_random_key(des_cblock *ret); -int des_read_password(des_cblock *key,const char *prompt,int verify); +int des_read_password(des_cblock *key,const char *_prompt,int verify); int des_read_2passwords(des_cblock *key1,des_cblock *key2, - const char *prompt,int verify); -int des_read_pw_string(char *buf,int length,const char *prompt,int verify); + const char *_prompt,int verify); +int des_read_pw_string(char *buf,int length,const char *_prompt,int verify); void des_set_odd_parity(des_cblock *key); int des_check_key_parity(const_des_cblock *key); int des_is_weak_key(const_des_cblock *key); @@ -226,7 +226,7 @@ void des_cfb64_encrypt(const unsigned char *in,unsigned char *out,long length, int enc); void des_ofb64_encrypt(const unsigned char *in,unsigned char *out,long length, des_key_schedule schedule,des_cblock *ivec,int *num); -int des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify); +int des_read_pw(char *buf,char *buff,int size,const char *_prompt,int verify); /* The following definitions provide compatibility with the MIT Kerberos * library. The des_key_schedule structure is not binary compatible. */ |