summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ui/ui_compat.c
diff options
context:
space:
mode:
authortedu <>2014-04-17 22:37:59 +0000
committertedu <>2014-04-17 22:37:59 +0000
commit4eaf48dd2cdab352d97fac22655d61c3da773d72 (patch)
tree821354c596b97115962e666d119a8ee8fedff14b /src/lib/libcrypto/ui/ui_compat.c
parent750723d995eaa75bcee4b0391acd1847a464e058 (diff)
downloadopenbsd-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.c16
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
59int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) 59int
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
64int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) 65int
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}