From e8f3a35193bcbdf69c5eebdac532cfaa7b44edc2 Mon Sep 17 00:00:00 2001 From: Gerald (Jerry) Carter Date: Mon, 6 Oct 2008 11:34:45 -0500 Subject: [PATCH] idmap_adex: Add log messages to dc_add_domain for easier debugging. Part of continue work on BUG 5806. --- source/winbindd/idmap_adex/domain_util.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/source/winbindd/idmap_adex/domain_util.c b/source/winbindd/idmap_adex/domain_util.c index ab31cce..e9d4569 100644 --- a/source/winbindd/idmap_adex/domain_util.c +++ b/source/winbindd/idmap_adex/domain_util.c @@ -49,6 +49,12 @@ static NTSTATUS dc_add_domain(const char *domain) NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; struct dc_info *dc = NULL; + if (!domain) { + return NT_STATUS_INVALID_PARAMETER; + } + + DEBUG(10,("dc_add_domain: Attempting to add domain %s\n", domain)); + /* Check for duplicates */ dc = dc_list_head(); @@ -73,6 +79,8 @@ static NTSTATUS dc_add_domain(const char *domain) nt_status = NT_STATUS_OK; + DEBUG(5,("dc_add_domain: Successfully added %s\n", domain)); + done: if (!NT_STATUS_IS_OK(nt_status)) { talloc_destroy(dc); -- 1.5.4.3