diff options
Diffstat (limited to 'recipes-security/opendnssec/files/fix_fprint.patch')
| -rw-r--r-- | recipes-security/opendnssec/files/fix_fprint.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-security/opendnssec/files/fix_fprint.patch b/recipes-security/opendnssec/files/fix_fprint.patch new file mode 100644 index 0000000..da0bcfe --- /dev/null +++ b/recipes-security/opendnssec/files/fix_fprint.patch | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | format not a string literal and no format arguments | ||
| 2 | |||
| 3 | missing module_str in call | ||
| 4 | |||
| 5 | Upstream-Status: Pending | ||
| 6 | Signed-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 | |||
| 13 | Index: 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 | } | ||
