1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
From: Stefan Metzmacher <metze@samba.org>
Date: Fri, 26 Jan 2024 09:25:11 +0100
Subject: s3:winbindd: use better debug messages than 'talloc_strdup failed'
Forwarded: not-needed
Origin: upstream, https://gitlab.com/samba-team/samba/-/commit/814ae222ca15ff7093a71639cdcc97b9937670ce
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Fri Apr 5 13:28:42 UTC 2024 on atb-devel-224
---
source3/winbindd/winbindd_cm.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index 1685edbabaa2..aebb4561ae8b 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -540,7 +540,8 @@ static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
tmp = talloc_strdup(
mem_ctx, domain_info->dc_unc);
if (tmp == NULL) {
- DEBUG(0, ("talloc_strdup failed\n"));
+ DBG_ERR("talloc_strdup failed for dc_unc[%s]\n",
+ domain_info->dc_unc);
talloc_destroy(mem_ctx);
return false;
}
@@ -548,7 +549,9 @@ static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
domain->alt_name = talloc_strdup(domain,
domain_info->domain_name);
if (domain->alt_name == NULL) {
- DEBUG(0, ("talloc_strdup failed\n"));
+ DBG_ERR("talloc_strdup failed for "
+ "domain_info->domain_name[%s]\n",
+ domain_info->domain_name);
talloc_destroy(mem_ctx);
return false;
}
@@ -557,7 +560,9 @@ static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
domain->forest_name = talloc_strdup(domain,
domain_info->forest_name);
if (domain->forest_name == NULL) {
- DEBUG(0, ("talloc_strdup failed\n"));
+ DBG_ERR("talloc_strdup failed for "
+ "domain_info->forest_name[%s]\n",
+ domain_info->forest_name);
talloc_destroy(mem_ctx);
return false;
}
--
2.50.0
|