mbedtls/programs/ssl
Mohammad Azim Khan 7e84affb45 Fix Wformat-overflow warning in ssl_mail_client.c
sprintf( (char *) buf, "%s\r\n", base );
 Above code generates Wformat-overflow warning since both buf and base
are of same size. buf should be sizeof( base ) + characters added in
the format. In this case format 2 bytes for "\r\n".
2018-08-16 14:34:15 +01:00
..
CMakeLists.txt
dtls_client.c Correct the printf message of the DTLS handshake. 2017-10-06 11:58:50 +01:00
dtls_server.c
mini_client.c
ssl_client1.c Fix typo in platform macro defines for examples 2018-07-10 17:34:25 +01:00
ssl_client2.c Fix ssl_client2 to send 0-length app data 2018-07-16 20:14:45 +01:00
ssl_fork_server.c Fix typo in platform macro defines for examples 2018-07-10 17:34:25 +01:00
ssl_mail_client.c Fix Wformat-overflow warning in ssl_mail_client.c 2018-08-16 14:34:15 +01:00
ssl_pthread_server.c
ssl_server.c
ssl_server2.c