summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_locator.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-01-11 15:32:20 +0100
committerGünther Deschner <gd@samba.org>2008-01-11 15:32:20 +0100
commitc79ce2ffa3f7d00ce6a2cd6008c203e3042b0b02 (patch)
tree6e69bdab3acadc4d064a78afd94e07fd0846e1f8 /source3/winbindd/winbindd_locator.c
parentefcf285e27e3f52cd6188f678d52977584c78972 (diff)
downloadsamba-c79ce2ffa3f7d00ce6a2cd6008c203e3042b0b02.tar.gz
samba-c79ce2ffa3f7d00ce6a2cd6008c203e3042b0b02.tar.bz2
samba-c79ce2ffa3f7d00ce6a2cd6008c203e3042b0b02.zip
As long as DsGetDcName is not part of libnetapi, lowercase the fn name.
Guenther (This used to be commit 19a980f52044a170618629e5b0484c1f6b586e5f)
Diffstat (limited to 'source3/winbindd/winbindd_locator.c')
-rw-r--r--source3/winbindd/winbindd_locator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/winbindd/winbindd_locator.c b/source3/winbindd/winbindd_locator.c
index ee497ebf32..05bd74af25 100644
--- a/source3/winbindd/winbindd_locator.c
+++ b/source3/winbindd/winbindd_locator.c
@@ -48,7 +48,7 @@ void winbindd_dsgetdcname(struct winbindd_cli_state *state)
state->request.domain_name
[sizeof(state->request.domain_name)-1] = '\0';
- DEBUG(3, ("[%5lu]: DsGetDcName for %s\n", (unsigned long)state->pid,
+ DEBUG(3, ("[%5lu]: dsgetdcname for %s\n", (unsigned long)state->pid,
state->request.domain_name));
sendto_child(state, locator_child());
@@ -64,10 +64,10 @@ static enum winbindd_result dual_dsgetdcname(struct winbindd_domain *domain,
state->request.domain_name
[sizeof(state->request.domain_name)-1] = '\0';
- DEBUG(3, ("[%5lu]: DsGetDcName for %s\n", (unsigned long)state->pid,
+ DEBUG(3, ("[%5lu]: dsgetdcname for %s\n", (unsigned long)state->pid,
state->request.domain_name));
- result = DsGetDcName(state->mem_ctx, NULL, state->request.domain_name,
+ result = dsgetdcname(state->mem_ctx, NULL, state->request.domain_name,
NULL, NULL, state->request.flags, &info);
if (!NT_STATUS_IS_OK(result)) {