From 593a2aa3eb8e0153ff0b6af72b1af3327b46a19e Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 6 Mar 2017 09:51:54 +0000 Subject: [PATCH] Fix no-psk Fixes #2847 Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/2856) --- apps/s_server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/s_server.c b/apps/s_server.c index 57bae82990..a6048fb831 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -144,12 +144,12 @@ static long socket_mtu; #endif static int dtlslisten = 0; +static int early_data = 0; + #ifndef OPENSSL_NO_PSK static char *psk_identity = "Client_identity"; char *psk_key = NULL; /* by default PSK is not used */ -static int early_data = 0; - static unsigned int psk_server_cb(SSL *ssl, const char *identity, unsigned char *psk, unsigned int max_psk_len) -- 2.34.1