From 6e3ff63228c7b74c899b3bbc81e7f11db20956de Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 11 May 2016 11:50:12 +0100 Subject: [PATCH] Make null_compression const Reviewed-by: Stephen Henson --- ssl/statem/statem_srvr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index a6841c3b4b..4507357abf 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -971,7 +971,7 @@ MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt) /* |cookie| will only be initialized for DTLS. */ PACKET session_id, cipher_suites, compression, extensions, cookie; int is_v2_record; - static unsigned char null_compression = 0; + static const unsigned char null_compression = 0; is_v2_record = RECORD_LAYER_is_sslv2_record(&s->rlayer); -- 2.34.1