1 file changed, 2 insertions(+), 3 deletions(-)
New commits:
commit cbd6168f42f1d1a2738cd59dd35ba4a391730bf3
Author: Mark Reynolds <mreynolds@redhat.com>
Date: Tue Oct 11 21:45:06 2016 -0400
Ticket 48978 - refactor LDADebug() to slapi_log_err()
Description: Fix missing argument in extendop.c
https://fedorahosted.org/389/ticket/48978
Reviewed by: mreynolds (one line commit rule)
diff --git a/ldap/servers/slapd/extendop.c b/ldap/servers/slapd/extendop.c
index 3aa4b39..7e41b8c 100644
--- a/ldap/servers/slapd/extendop.c
+++ b/ldap/servers/slapd/extendop.c
@@ -46,9 +46,8 @@ static void extop_handle_import_start(Slapi_PBlock *pb, char *extoid,
/* check that the dn is formatted correctly */
ret = slapi_dn_syntax_check(pb, orig, 1);
if (ret) { /* syntax check failed */
- slapi_log_err(SLAPI_LOG_ERR,
- "extop_handle_import_start - strict: invalid suffix\n",
- orig);
+ slapi_log_err(SLAPI_LOG_ERR, "extop_handle_import_start",
+ "strict: invalid suffix (%s)\n", orig);
send_ldap_result(pb, LDAP_INVALID_DN_SYNTAX, NULL,
"invalid suffix", 0, NULL);
return;
_______________________________________________
389-commits mailing list -- 389-commits@lists.fedoraproject.org
To unsubscribe send an email to 389-commits-leave@lists.fedoraproject.org
No comments:
Post a Comment