mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix log format not a string literal.
This was to resolve a -Werror=format-security error. ipa_extdom_extop.c: In function 'ipa_extdom_extop': ipa_extdom_extop.c:144:9: error: format not a string literal and no format arguments [-Werror=format-security]
This commit is contained in:
parent
ec41744e76
commit
517e475f61
@ -141,7 +141,7 @@ done:
|
||||
free(req);
|
||||
free(res);
|
||||
if (err_msg != NULL) {
|
||||
LOG(err_msg);
|
||||
LOG("%s", err_msg);
|
||||
}
|
||||
slapi_send_ldap_result(pb, rc, NULL, err_msg, 0, NULL);
|
||||
return SLAPI_PLUGIN_EXTENDED_SENT_RESULT;
|
||||
|
Loading…
Reference in New Issue
Block a user