diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-06-18 12:33:46 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-06-18 13:49:30 +1000 |
commit | 58e8db912d2213a594714ac29866396098662557 (patch) | |
tree | 1fba34e4ef93aa73e9839ad876460e6aa157a2fb /source4/torture/libnet | |
parent | 19413c52495877d54c90c60229568d0077fda30b (diff) | |
download | samba-58e8db912d2213a594714ac29866396098662557.tar.gz samba-58e8db912d2213a594714ac29866396098662557.tar.bz2 samba-58e8db912d2213a594714ac29866396098662557.zip |
s4:libnet Allow 'net password change' to work on expired passwords
We need to pass down flags to the DCE/RPC layer to allow fallback to
anonymous connections, as we can't log in with an expired password.
The anonymous connection can then change the password with SAMR.
Andrew Bartlett
Diffstat (limited to 'source4/torture/libnet')
-rw-r--r-- | source4/torture/libnet/libnet_rpc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/torture/libnet/libnet_rpc.c b/source4/torture/libnet/libnet_rpc.c index 0bcfcb6a4c..c9ba875589 100644 --- a/source4/torture/libnet/libnet_rpc.c +++ b/source4/torture/libnet/libnet_rpc.c @@ -42,6 +42,8 @@ static bool test_connect_service(struct libnet_context *ctx, { NTSTATUS status; struct libnet_RpcConnect connect_r; + ZERO_STRUCT(connect_r); + connect_r.level = level; connect_r.in.binding = binding_string; connect_r.in.name = hostname; |