mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-23 15:19:36 -04:00
BUG/MINOR: ssl: Stop passing dynamic strings as format arguments
gcc complains rightfully:
src/ssl_sock.c: In function ‘ssl_sock_prepare_all_ctx’:
src/ssl_sock.c:5507:3: warning: format not a string literal and no format arguments [-Wformat-security]
ha_warning(errmsg);
^
src/ssl_sock.c:5509:3: warning: format not a string literal and no format arguments [-Wformat-security]
ha_alert(errmsg);
^
src/ssl_sock.c: In function ‘cli_io_handler_commit_cert’:
src/ssl_sock.c:10208:3: warning: format not a string literal and no format arguments [-Wformat-security]
chunk_appendf(trash, err);
Introduced in 8b453912ce.
This commit is contained in:
parent
d14b49c128
commit
c0e820c352
1 changed files with 3 additions and 3 deletions
|
|
@ -5504,9 +5504,9 @@ int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
|
|||
}
|
||||
|
||||
if (errcode & ERR_WARN) {
|
||||
ha_warning(errmsg);
|
||||
ha_warning("%s", errmsg);
|
||||
} else if (errcode & ERR_CODE) {
|
||||
ha_alert(errmsg);
|
||||
ha_alert("%s", errmsg);
|
||||
err++;
|
||||
}
|
||||
|
||||
|
|
@ -10205,7 +10205,7 @@ end:
|
|||
|
||||
chunk_appendf(trash, "\n");
|
||||
if (errcode & ERR_WARN)
|
||||
chunk_appendf(trash, err);
|
||||
chunk_appendf(trash, "%s", err);
|
||||
chunk_appendf(trash, "Success!\n");
|
||||
if (ci_putchk(si_ic(si), trash) == -1)
|
||||
si_rx_room_blk(si);
|
||||
|
|
|
|||
Loading…
Reference in a new issue