From c7b41e67f0d7cccb4a88c7f19b76043f96232eee Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 26 Mar 2002 13:54:15 +0000 Subject: [PATCH] Correct the mapping for des_read_pw() --- crypto/ui/ui_compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1