diff options
author | Tim Potter <tpot@samba.org> | 2002-08-22 23:44:36 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-22 23:44:36 +0000 |
commit | 6232468dcaadca90c1106c12a557c83b1dca0fc4 (patch) | |
tree | f646af2e2ebbabb6a26691ea261f999038574173 /source3 | |
parent | 266fd83651bb5b2446e136492b82c836a8be095b (diff) | |
download | samba-6232468dcaadca90c1106c12a557c83b1dca0fc4.tar.gz samba-6232468dcaadca90c1106c12a557c83b1dca0fc4.tar.bz2 samba-6232468dcaadca90c1106c12a557c83b1dca0fc4.zip |
Fix for change in cli_netlogon_sam_sync()
(This used to be commit 6ec267618a7ba2c4a7170b78ccfe95120c5430c4)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpcclient/cmd_netlogon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_netlogon.c b/source3/rpcclient/cmd_netlogon.c index 198787f22b..20fd069fbe 100644 --- a/source3/rpcclient/cmd_netlogon.c +++ b/source3/rpcclient/cmd_netlogon.c @@ -187,7 +187,7 @@ static NTSTATUS cmd_netlogon_sam_sync(struct cli_state *cli, /* Synchronise sam database */ result = cli_netlogon_sam_sync(cli, mem_ctx, &ret_creds, database_id, - &num_deltas, &hdr_deltas, &deltas); + 0, &num_deltas, &hdr_deltas, &deltas); if (!NT_STATUS_IS_OK(result)) goto done; |