summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-06-12 23:22:30 +0100
committerRich Salz <rsalz@openssl.org>2016-06-12 21:28:12 -0400
commitccd582c2f1bd3bea1423a0205692dc2e358ace51 (patch)
tree26f85ce0c25bf4612ed60079ab413ed753d403a7 /apps
parent6397ac585d6d4101be0fb742ac0db5074bd4e8a6 (diff)
Fix link error.
Use string_to_hex, OPENSSL_hexstr2buf() doesn't exist in OpenSSL 1.0.2 Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/s_client.c2
-rw-r--r--apps/s_server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 80cbd94a5f..951a202771 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -267,7 +267,7 @@ static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
ret);
/* convert the PSK key to binary */
- key = OPENSSL_hexstr2buf(psk_key, &key_len);
+ key = string_to_hex(psk_key, &key_len);
if (key == NULL) {
BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
psk_key);
diff --git a/apps/s_server.c b/apps/s_server.c
index ceacd898cc..d6c53d9476 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -376,7 +376,7 @@ static unsigned int psk_server_cb(SSL *ssl, const char *identity,
BIO_printf(bio_s_out, "PSK client identity found\n");
/* convert the PSK key to binary */
- key = OPENSSL_hexstr2buf(psk_key, &key_len);
+ key = string_to_hex(psk_key, &key_len);
if (key == NULL) {
BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
psk_key);