diff options
Diffstat (limited to 'src/lib/libcrypto/ui/ui_compat.c')
-rw-r--r-- | src/lib/libcrypto/ui/ui_compat.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/lib/libcrypto/ui/ui_compat.c b/src/lib/libcrypto/ui/ui_compat.c index 13e0f70d90..2c5ee4dcee 100644 --- a/src/lib/libcrypto/ui/ui_compat.c +++ b/src/lib/libcrypto/ui/ui_compat.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * are met: | 7 | * are met: |
8 | * | 8 | * |
9 | * 1. Redistributions of source code must retain the above copyright | 9 | * 1. Redistributions of source code must retain the above copyright |
10 | * notice, this list of conditions and the following disclaimer. | 10 | * notice, this list of conditions and the following disclaimer. |
11 | * | 11 | * |
12 | * 2. Redistributions in binary form must reproduce the above copyright | 12 | * 2. Redistributions in binary form must reproduce the above copyright |
13 | * notice, this list of conditions and the following disclaimer in | 13 | * notice, this list of conditions and the following disclaimer in |
@@ -56,12 +56,14 @@ | |||
56 | #include <string.h> | 56 | #include <string.h> |
57 | #include <openssl/ui_compat.h> | 57 | #include <openssl/ui_compat.h> |
58 | 58 | ||
59 | int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) | 59 | int |
60 | { | 60 | _ossl_old_des_read_pw_string(char *buf, int length, const char *prompt, int verify) |
61 | { | ||
61 | return UI_UTIL_read_pw_string(buf, length, prompt, verify); | 62 | return UI_UTIL_read_pw_string(buf, length, prompt, verify); |
62 | } | 63 | } |
63 | 64 | ||
64 | int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) | 65 | int |
65 | { | 66 | _ossl_old_des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) |
67 | { | ||
66 | return UI_UTIL_read_pw(buf, buff, size, prompt, verify); | 68 | return UI_UTIL_read_pw(buf, buff, size, prompt, verify); |
67 | } | 69 | } |