blob: da0bcfe740f1cdf352111b3fb7b53d0ff8960c20 [file] [log] [blame]
Andrew Geisslerd1d22e62020-10-16 10:14:32 -05001format not a string literal and no format arguments
2
3missing module_str in call
4
5Upstream-Status: Pending
6Signed-off-by: Armin Kuster <akuster808@gmail.com>
7
8../../../git/enforcer/src/keystate/keystate_ds.c:192:7: error: format not a string literal and no format arguments [-Werror=format-security]
9| 192 | ods_log_error_and_printf(sockfd, "Failed to run %s", cp_ds);
10| | ^~~~~~~~~~~~~~~~~~~~~~~~
11
12
13Index: git/enforcer/src/keystate/keystate_ds.c
14===================================================================
15--- git.orig/enforcer/src/keystate/keystate_ds.c
16+++ git/enforcer/src/keystate/keystate_ds.c
17@@ -189,7 +189,7 @@ exec_dnskey_by_id(int sockfd, struct dbw
18 status = 0;
19 }
20 else {
21- ods_log_error_and_printf(sockfd, "Failed to run %s", cp_ds);
22+ ods_log_error_and_printf(sockfd, module_str, "Failed to run %s", cp_ds);
23 status = 7;
24 }
25 }