Skip to content

Commit

Permalink
Correct the mapping for des_read_pw()
Browse files Browse the repository at this point in the history
  • Loading branch information
levitte committed Mar 26, 2002
1 parent 003144a commit c7b41e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ui/ui_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c7b41e6

Please sign in to comment.