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:
Diane Trout 2013-06-01 21:44:35 -07:00 committed by Martin Kosek
parent ec41744e76
commit 517e475f61

View File

@ -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;