e57a97aa67
- Resolves: RHEL-12589 ipa: Invalid CSRF protection - Resolves: RHEL-19748 ipa hbac-test did not report that it hit an arbitrary search limit - Resolves: RHEL-21059 'DogtagCertsConfigCheck' fails, displaying the error message 'Malformed directive: ca.signing.certnickname=caSigningCert cert-pki-ca' - Resolves: RHEL-21804 ipa client 4.10.2 - Failed to obtain host TGT - Resolves: RHEL-21809 CA less servers are failing to be added in topology segment for domain suffix - Resolves: RHEL-21810 ipa-client-install --automount-location does not work - Resolves: RHEL-21811 Handle change in behavior of pki-server ca-config-show in pki 11.5.0 - Resolves: RHEL-21812 Backport latest test fixes in ipa - Resolves: RHEL-21813 krb5kdc fails to start when pkinit and otp auth type is enabled in ipa - Resolves: RHEL-21815 IPA 389ds plugins need to have better logging and tracing - Resolves: RHEL-21937 Make sure a default NetBIOS name is set if not passed in by ADTrust instance constructor Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
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
|
|
|