summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_misc.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-12-21 15:12:40 +0100
committerGünther Deschner <gd@samba.org>2007-12-21 15:12:40 +0100
commit8ded1df76739363259edce0515b097510e342595 (patch)
tree68a6a028e46481aff42718b4d5548adfbb7a88c7 /source3/winbindd/winbindd_misc.c
parent574354a7ec76e85e0f5a1172de9e59ae5bc52d48 (diff)
downloadsamba-8ded1df76739363259edce0515b097510e342595.tar.gz
samba-8ded1df76739363259edce0515b097510e342595.tar.bz2
samba-8ded1df76739363259edce0515b097510e342595.zip
Kill fstring in getdcname & getanydcname return.
Guenther (This used to be commit b7383818168863a7ba43c2456f8c44e96e76707a)
Diffstat (limited to 'source3/winbindd/winbindd_misc.c')
-rw-r--r--source3/winbindd/winbindd_misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/winbindd/winbindd_misc.c b/source3/winbindd/winbindd_misc.c
index 8c3ef5bb6f..76f2554122 100644
--- a/source3/winbindd/winbindd_misc.c
+++ b/source3/winbindd/winbindd_misc.c
@@ -231,7 +231,7 @@ void winbindd_getdcname(struct winbindd_cli_state *state)
enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
struct winbindd_cli_state *state)
{
- fstring dcname_slash;
+ char *dcname_slash = NULL;
char *p;
struct rpc_pipe_client *netlogon_pipe;
NTSTATUS result;
@@ -262,12 +262,12 @@ enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
werr = rpccli_netlogon_getdcname(netlogon_pipe, state->mem_ctx,
domain->dcname,
state->request.domain_name,
- dcname_slash);
+ &dcname_slash);
} else {
werr = rpccli_netlogon_getanydcname(netlogon_pipe, state->mem_ctx,
domain->dcname,
state->request.domain_name,
- dcname_slash);
+ &dcname_slash);
}
/* And restore our original timeout. */
cli_set_timeout(netlogon_pipe->cli, orig_timeout);