I wasn't subscribed to the list before, so here's the git formatted patch you 
were asking for.

Diane
>From 9d03964afbbbf6c7f45c99e8c4da4183f05cd949 Mon Sep 17 00:00:00 2001
From: Diane Trout <di...@ghic.org>
Date: Sat, 1 Jun 2013 21:44:35 -0700
Subject: [PATCH] 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(-)

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 f36878c..37a4b1d 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;
-- 
1.7.10.4

_______________________________________________
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

Reply via email to