From 64b0c02e8b374e1fef5e580e622b976879a63b9a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 18 Oct 2005 14:58:51 +0000 Subject: r11146: make sure we get the expected amount of addresses metze (This used to be commit 9903a47151a96177e835ba45450ad12a2e969ee2) --- source4/torture/nbt/winsreplication.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source4/torture') diff --git a/source4/torture/nbt/winsreplication.c b/source4/torture/nbt/winsreplication.c index 3cdd84e5f1..c771fc52ee 100644 --- a/source4/torture/nbt/winsreplication.c +++ b/source4/torture/nbt/winsreplication.c @@ -529,6 +529,15 @@ static BOOL test_wrepl_is_applied(struct test_wrepl_conflict_conn *ctx, CHECK_VALUE_STRING(names[0].name.scope, name->name->scope); CHECK_VALUE(flags, name->flags); CHECK_VALUE_UINT64(names[0].version_id, name->id); + + if (flags & 2) { + CHECK_VALUE(names[0].num_addresses, + name->addresses.addresses.num_ips); + } else { + CHECK_VALUE(names[0].num_addresses, 1); + CHECK_VALUE_STRING(names[0].addresses[0].address, + name->addresses.ip); + } } done: talloc_free(pull_names.out.names); -- cgit