mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-19 22:47:50 +00:00
Stop assuming chars are signed
This commit is contained in:
parent
5dd28ea432
commit
8b9bcecaae
|
@ -137,7 +137,7 @@ struct options
|
||||||
const char *alpn_string; /* ALPN supported protocols */
|
const char *alpn_string; /* ALPN supported protocols */
|
||||||
int fallback; /* is this a fallback connection? */
|
int fallback; /* is this a fallback connection? */
|
||||||
int extended_ms; /* negotiate extended master secret? */
|
int extended_ms; /* negotiate extended master secret? */
|
||||||
char etm; /* negotiate encrypt then mac? ? */
|
int etm; /* negotiate encrypt then mac? */
|
||||||
} opt;
|
} opt;
|
||||||
|
|
||||||
static void my_debug( void *ctx, int level, const char *str )
|
static void my_debug( void *ctx, int level, const char *str )
|
||||||
|
|
Loading…
Reference in a new issue