From 2d5e4708e97d552d48d45d5ef04082a53ffed460 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 10 Jun 2008 20:50:25 +0200 Subject: idl: fix drsuapi_DsGetNCChanges. Guenther (This used to be commit 652af123b214e30d0edf1d5626849484c6bb5045) --- source3/librpc/idl/drsuapi.idl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source3/librpc/idl/drsuapi.idl b/source3/librpc/idl/drsuapi.idl index 16b87d74c3..8a3bb69294 100644 --- a/source3/librpc/idl/drsuapi.idl +++ b/source3/librpc/idl/drsuapi.idl @@ -626,9 +626,10 @@ interface drsuapi WERROR drsuapi_DsGetNCChanges( [in] policy_handle *bind_handle, - [in,out,ref] int32 *level, - [in,ref,switch_is(*level)] drsuapi_DsGetNCChangesRequest *req, - [out,ref,switch_is(*level)] drsuapi_DsGetNCChangesCtr *ctr + [in] int32 level, + [in,ref,switch_is(level)] drsuapi_DsGetNCChangesRequest *req, + [out,ref] int32 *level_out, + [out,ref,switch_is(*level_out)] drsuapi_DsGetNCChangesCtr *ctr ); /*****************/ -- cgit