commit | 78803c0567be807f333b196ae7defd4a47c40fbf | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Jan 13 21:20:22 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Jan 13 21:20:22 2015 +0100 |
tree | bc786c44b017a0c4451308e35e0d66747bfef988 | |
parent | a852cf4833cfd8c86757ba89e15f3645499e4eca [diff] [blame] |
Fix char signedness issue
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h index 5f4b5f7..5624ebe 100644 --- a/include/polarssl/ssl.h +++ b/include/polarssl/ssl.h
@@ -836,7 +836,7 @@ 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