Missed a few -Wformat-security warnings.

This commit is contained in:
William Pitcock 2012-01-25 13:24:04 -06:00
parent 32ea9d3d83
commit 481b443b4d

View file

@ -456,12 +456,12 @@ ssl_process_cmd_recv(ssl_ctl_t * ctl)
case 'I':
ssl_ok = 0;
ilog(L_MAIN, "%s", cannot_setup_ssl);
sendto_realops_snomask(SNO_GENERAL, L_ALL, cannot_setup_ssl);
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s", cannot_setup_ssl);
case 'U':
zlib_ok = 0;
ssl_ok = 0;
ilog(L_MAIN, "%s", no_ssl_or_zlib);
sendto_realops_snomask(SNO_GENERAL, L_ALL, no_ssl_or_zlib);
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s", no_ssl_or_zlib);
ssl_killall();
break;
case 'z':