From: Richard Levitte Date: Wed, 28 Jun 2017 11:01:29 +0000 (+0200) Subject: test/uitest.c's pem_password_cb returned 1 instead of the password length X-Git-Tag: OpenSSL_1_1_1-pre1~1188 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a2755b1695e8f58c3b531a53058aba5146ea075b;p=oweals%2Fopenssl.git test/uitest.c's pem_password_cb returned 1 instead of the password length Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3791) --- diff --git a/test/uitest.c b/test/uitest.c index 68b4b8cbd9..469e2304f8 100644 --- a/test/uitest.c +++ b/test/uitest.c @@ -24,7 +24,7 @@ char *default_config_file = NULL; static int test_pem_password_cb(char *buf, int size, int rwflag, void *userdata) { OPENSSL_strlcpy(buf, (char *)userdata, (size_t)size); - return 1; + return strlen(buf); } /*