From b2eaac154b960a49430343895a76567cec28fc7f Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Tue, 13 Jan 2015 17:15:31 +0100 Subject: [PATCH] Stop assuming chars are signed --- programs/ssl/ssl_server2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/ssl/ssl_server2.c b/programs/ssl/ssl_server2.c index b02b1765ee..2980cf5689 100644 --- a/programs/ssl/ssl_server2.c +++ b/programs/ssl/ssl_server2.c @@ -180,8 +180,8 @@ struct options char *sni; /* string describing sni information */ const char *alpn_string; /* ALPN supported protocols */ const char *dhm_file; /* the file with the DH parameters */ - char extended_ms; /* allow negotiation of extended MS? */ - char etm; /* allow negotiation of encrypt-then-MAC? */ + int extended_ms; /* allow negotiation of extended MS? */ + int etm; /* allow negotiation of encrypt-then-MAC? */ } opt; static void my_debug( void *ctx, int level, const char *str )