From 78803c0567be807f333b196ae7defd4a47c40fbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 13 Jan 2015 21:20:22 +0100 Subject: [PATCH] Fix char signedness issue --- include/polarssl/ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h index 5f4b5f750..5624ebe99 100644 --- a/include/polarssl/ssl.h +++ b/include/polarssl/ssl.h @@ -836,7 +836,7 @@ struct _ssl_context unsigned char mfl_code; /*!< MaxFragmentLength chosen by us */ #endif /* POLARSSL_SSL_MAX_FRAGMENT_LENGTH */ #if defined(POLARSSL_SSL_CBC_RECORD_SPLITTING) - char split_done; /*!< flag for record splitting: + signed char split_done; /*!< flag for record splitting: -1 disabled, 0 todo, 1 done */ #endif