diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-12-31 16:53:14 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-12-31 17:33:53 +1100 |
commit | de9485784867a7a68207e42fe2a021de01e54904 (patch) | |
tree | a5cbe4065200ede9b87fc6fde5152dbffc1c2efd | |
parent | 9d6411d9dd2ef4bca247d41708bb6b0d0d14389a (diff) | |
download | samba-de9485784867a7a68207e42fe2a021de01e54904.tar.gz samba-de9485784867a7a68207e42fe2a021de01e54904.tar.bz2 samba-de9485784867a7a68207e42fe2a021de01e54904.zip |
s4-net: fixed finddcs to use empty SID instead of NULL sid (NDR error)
-rw-r--r-- | source4/libcli/finddcs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/finddcs.c b/source4/libcli/finddcs.c index 8330042ea1..04b25d37ef 100644 --- a/source4/libcli/finddcs.c +++ b/source4/libcli/finddcs.c @@ -158,6 +158,9 @@ static void finddcs_name_resolved(struct composite_context *ctx) if (composite_nomem(state->r.in.my_accountname, state->ctx)) return; state->r.in.account_control = ACB_WSTRUST; state->r.in.domain_sid = state->domain_sid; + if (state->r.in.domain_sid == NULL) { + state->r.in.domain_sid = talloc_zero(state, struct dom_sid); + } ireq = irpc_call_send(state->msg_ctx, nbt_servers[0], &ndr_table_irpc, NDR_NBTD_GETDCNAME, |