summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-03-02 23:53:30 +0000
committerMatt Caswell <matt@openssl.org>2017-03-02 23:56:36 +0000
commit30d1bab146ffef92376f09b7372aac7a75281627 (patch)
treebcf4c95da13915f70e654eda1973df5cfe6bfd04 /apps
parent83750d9b2b51bb622138d48fc82eb408b64d8057 (diff)
Silence some clang warnings
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2831)
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 3190eabab1..57bae82990 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -148,7 +148,7 @@ static int dtlslisten = 0;
static char *psk_identity = "Client_identity";
char *psk_key = NULL; /* by default PSK is not used */
-int early_data = 0;
+static int early_data = 0;
static unsigned int psk_server_cb(SSL *ssl, const char *identity,
unsigned char *psk,