svn commit: samba r22063 - in branches/SAMBA_4_0: . source/torture/rpc

jelmer at samba.org jelmer at samba.org
Tue Apr 3 22:43:37 GMT 2007


Author: jelmer
Date: 2007-04-03 22:43:35 +0000 (Tue, 03 Apr 2007)
New Revision: 22063

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22063

Log:
Fix the RPC-EPMAPPER test.

Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/torture/rpc/epmapper.c


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:merge
...skipped...

Modified: branches/SAMBA_4_0/source/torture/rpc/epmapper.c
===================================================================
--- branches/SAMBA_4_0/source/torture/rpc/epmapper.c	2007-04-03 19:47:19 UTC (rev 22062)
+++ branches/SAMBA_4_0/source/torture/rpc/epmapper.c	2007-04-03 22:43:35 UTC (rev 22063)
@@ -49,6 +49,7 @@
 	struct policy_handle handle;
 	int i;
 	struct dcerpc_syntax_id syntax;
+	uint32_t num_towers;
 
 	ZERO_STRUCT(uuid);
 	ZERO_STRUCT(handle);
@@ -58,6 +59,7 @@
 	r.in.entry_handle = &handle;	
 	r.out.entry_handle = &handle;
 	r.in.max_towers = 100;
+	r.out.num_towers = &num_towers;
 
 	dcerpc_floor_get_lhs_data(&twr->tower.floors[0], &syntax);
 
@@ -140,6 +142,7 @@
 	struct GUID uuid;
 	struct rpc_if_id_t iface;
 	struct policy_handle handle;
+	uint32_t num_ents;
 
 	ZERO_STRUCT(handle);
 
@@ -150,6 +153,7 @@
 	r.in.entry_handle = &handle;
 	r.out.entry_handle = &handle;
 	r.in.max_ents = 10;
+	r.out.num_ents = &num_ents;
 
 	do {
 		int i;



More information about the samba-cvs mailing list