diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-15 14:53:02 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-15 14:53:02 -0700 |
commit | a04caf329fefccad0fc272474025f6d23a4deaa2 (patch) | |
tree | 8b039a39dada94f081238f6a440a83bff879e9e1 /source4 | |
parent | d581a56e209dbf6e67fc8644e0d84fadd593133e (diff) | |
parent | 7b3b66d7a22a4f2b460f979f4f489b09464f6946 (diff) | |
download | samba-a04caf329fefccad0fc272474025f6d23a4deaa2.tar.gz samba-a04caf329fefccad0fc272474025f6d23a4deaa2.tar.bz2 samba-a04caf329fefccad0fc272474025f6d23a4deaa2.zip |
Merge branch 'master' of /home/tridge/samba/git/combined
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/libnet/libnet_BecomeDC.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/torture/libnet/libnet_BecomeDC.c b/source4/torture/libnet/libnet_BecomeDC.c index 7d1c025f18..81bdf342b2 100644 --- a/source4/torture/libnet/libnet_BecomeDC.c +++ b/source4/torture/libnet/libnet_BecomeDC.c @@ -140,6 +140,7 @@ static NTSTATUS test_apply_schema(struct test_become_dc_state *s, uint32_t i; int ret; bool ok; + uint64_t seq_num; DEBUG(0,("Analyze and apply schema objects\n")); @@ -273,7 +274,7 @@ static NTSTATUS test_apply_schema(struct test_become_dc_state *s, s_dsa, uptodateness_vector, c->gensec_skey, - s, &objs); + s, &objs, &seq_num); if (!W_ERROR_IS_OK(status)) { DEBUG(0,("Failed to commit objects: %s\n", win_errstr(status))); return werror_to_ntstatus(status); @@ -447,6 +448,7 @@ static NTSTATUS test_become_dc_store_chunk(void *private_data, struct repsFromTo1 *s_dsa; char *tmp_dns_name; uint32_t i; + uint64_t seq_num; s_dsa = talloc_zero(s, struct repsFromTo1); NT_STATUS_HAVE_NO_MEMORY(s_dsa); @@ -514,7 +516,7 @@ static NTSTATUS test_become_dc_store_chunk(void *private_data, s_dsa, uptodateness_vector, c->gensec_skey, - s, &objs); + s, &objs, &seq_num); if (!W_ERROR_IS_OK(status)) { DEBUG(0,("Failed to commit objects: %s\n", win_errstr(status))); return werror_to_ntstatus(status); |