From: Richard Levitte Date: Tue, 26 Mar 2002 13:54:15 +0000 (+0000) Subject: Correct the mapping for des_read_pw() X-Git-Tag: OpenSSL_0_9_6d~20^2~51 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c7b41e67f0d7cccb4a88c7f19b76043f96232eee;p=oweals%2Fopenssl.git Correct the mapping for des_read_pw() --- diff --git a/crypto/ui/ui_compat.h b/crypto/ui/ui_compat.h index f33023718a..b35c9bb7fd 100644 --- a/crypto/ui/ui_compat.h +++ b/crypto/ui/ui_compat.h @@ -72,7 +72,7 @@ extern "C" { #define des_read_pw_string(b,l,p,v) \ _ossl_old_des_read_pw_string((b),(l),(p),(v)) #define des_read_pw(b,bf,s,p,v) \ - _ossl_old_des_read_pw_string((b),(bf),(s),(p),(v)) + _ossl_old_des_read_pw((b),(bf),(s),(p),(v)) int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify); int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);