diff options
author | Günther Deschner <gd@samba.org> | 2008-06-10 20:50:25 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-11 10:46:37 +0200 |
commit | 2d5e4708e97d552d48d45d5ef04082a53ffed460 (patch) | |
tree | c5b6be2f41a74a22f4a02919997006058d94df4a /source3/librpc | |
parent | 2816e86b06003365c1f09ebcb9a9871cd6a97d3f (diff) | |
download | samba-2d5e4708e97d552d48d45d5ef04082a53ffed460.tar.gz samba-2d5e4708e97d552d48d45d5ef04082a53ffed460.tar.xz samba-2d5e4708e97d552d48d45d5ef04082a53ffed460.zip |
idl: fix drsuapi_DsGetNCChanges.
Guenther
(This used to be commit 652af123b214e30d0edf1d5626849484c6bb5045)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/drsuapi.idl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/librpc/idl/drsuapi.idl b/source3/librpc/idl/drsuapi.idl index 16b87d74c34..8a3bb69294b 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 ); /*****************/ |