From 517e475f611e56778112a4b361e3809844ad95d9 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Sat, 1 Jun 2013 21:44:35 -0700 Subject: 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] --- daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c') diff --git a/daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c b/daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c index f36878c37..37a4b1dce 100644 --- a/daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c +++ b/daemons/ipa-slapi-plugins/ipa-extdom-extop/ipa_extdom_extop.c @@ -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; -- cgit