48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
|
From a2fcfb9e17c4e7f2b4c57fa1eccdfe27d0c085d3 Mon Sep 17 00:00:00 2001
|
||
|
From: Mark Reynolds <mreynolds@redhat.com>
|
||
|
Date: Tue, 12 Dec 2023 08:41:43 -0500
|
||
|
Subject: [PATCH] Issue 9497 - update debug logging in ipa_uuid
|
||
|
|
||
|
Fixes: https://pagure.io/freeipa/issue/9497
|
||
|
|
||
|
Signed-off-by: Mark Reynolds <mreynolds@redhat.com>
|
||
|
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
|
||
|
---
|
||
|
daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c | 6 +++---
|
||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c b/daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c
|
||
|
index 87d8be2d88d9ff9bbf7d47eab57b765063f7a230..2fa84f5167341667050e3cfd4bda4c4a4991d06d 100644
|
||
|
--- a/daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c
|
||
|
+++ b/daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c
|
||
|
@@ -30,7 +30,7 @@
|
||
|
* Program may make changes or additions to the list of Approved
|
||
|
* Interfaces.
|
||
|
*
|
||
|
- * Copyright (C) 2010 Red Hat, Inc.
|
||
|
+ * Copyright (C) 2010-2023 Red Hat, Inc.
|
||
|
* All rights reserved.
|
||
|
* END COPYRIGHT BLOCK **/
|
||
|
|
||
|
@@ -1185,7 +1185,7 @@ static int ipauuid_pre_op(Slapi_PBlock *pb, int modtype)
|
||
|
* enforce is enabled. */
|
||
|
errstr = slapi_ch_smprintf("Only the Directory Manager "
|
||
|
"can set arbitrary values "
|
||
|
- "for %s\n", cfgentry->attr);
|
||
|
+ "for %s", cfgentry->attr);
|
||
|
ret = LDAP_INSUFFICIENT_ACCESS;
|
||
|
goto done;
|
||
|
}
|
||
|
@@ -1221,7 +1221,7 @@ done:
|
||
|
}
|
||
|
|
||
|
if (ret) {
|
||
|
- LOG("operation failure [%d]\n", ret);
|
||
|
+ LOG("operation failure [%d] - %s\n", ret, errstr);
|
||
|
slapi_send_ldap_result(pb, ret, NULL, errstr, 0, NULL);
|
||
|
slapi_ch_free((void **)&errstr);
|
||
|
ret = EFAIL;
|
||
|
--
|
||
|
2.43.0
|
||
|
|