Mohammad Azim Khan 58e9c1833b 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-06 12:02:02 +01:00
..
2018-06-28 05:07:08 -04:00
2018-06-28 05:07:08 -04:00
2015-09-04 14:21:07 +02:00