diff options
author | tedu <> | 2014-04-17 22:37:59 +0000 |
---|---|---|
committer | tedu <> | 2014-04-17 22:37:59 +0000 |
commit | 4eaf48dd2cdab352d97fac22655d61c3da773d72 (patch) | |
tree | 821354c596b97115962e666d119a8ee8fedff14b /src/lib/libcrypto/ui/ui_compat.c | |
parent | 750723d995eaa75bcee4b0391acd1847a464e058 (diff) | |
download | openbsd-4eaf48dd2cdab352d97fac22655d61c3da773d72.tar.gz openbsd-4eaf48dd2cdab352d97fac22655d61c3da773d72.tar.bz2 openbsd-4eaf48dd2cdab352d97fac22655d61c3da773d72.zip |
stab at indentation
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 | } |