summaryrefslogtreecommitdiffstats
path: root/crypto/ui
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-03-26 13:54:15 +0000
committerRichard Levitte <levitte@openssl.org>2002-03-26 13:54:15 +0000
commitc7b41e67f0d7cccb4a88c7f19b76043f96232eee (patch)
treec2450adb447286653ee0e9e5354e458227d8994a /crypto/ui
parent003144a8e8ed5c6c4aaee6e227773bb3d6bc0f9d (diff)
Correct the mapping for des_read_pw()
Diffstat (limited to 'crypto/ui')
-rw-r--r--crypto/ui/ui_compat.h2
1 files changed, 1 insertions, 1 deletions
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);