summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorweinholtendian <45032224+weinholtendian@users.noreply.github.com>2019-01-31 15:16:20 +0800
committerPaul Yang <yang.yang@baishancloud.com>2019-01-31 15:18:36 +0800
commit43bc3d84f82c09b786ae6920ba2086d073fae57a (patch)
treed6e72658c3e60dd4f019bbb5f6ffe2a5264fc2a6 /apps
parentdb6c6c3df296558d00fd21ae1a29a7523d884b55 (diff)
Fix error message for s_server -psk option
Previously if -psk was given a bad key it would print "Not a hex number 's_server'". CLA: Trivial Reviewed-by: Paul Yang <yang.yang@baishancloud.com> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/8113) (cherry picked from commit e57120128fa4e2afa4bda5022a77f73a1e3a0b27)
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 15b4b430da..aa0c9ae681 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -1407,7 +1407,7 @@ int s_server_main(int argc, char *argv[])
for (p = psk_key = opt_arg(); *p; p++) {
if (isxdigit(_UC(*p)))
continue;
- BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
+ BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
goto end;
}
break;