From 5656fac52b2bf0a652ded9413a52455479a5d5d8 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 18 Jul 2008 23:30:36 +0200 Subject: netapi: cosmetics, use "buffer" everywhere. Guenther (This used to be commit 25522f0de081e819d661728f7f6767037e514094) --- source3/librpc/idl/libnetapi.idl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 75031d032d..e093d273f9 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -476,7 +476,7 @@ interface libnetapi [nopush,nopull] NET_API_STATUS NetGroupAdd( [in] string server_name, [in] uint32 level, - [in] uint8 *buf, + [in] uint8 *buffer, [out] uint32 *parm_err ); @@ -511,7 +511,7 @@ interface libnetapi [in] string server_name, [in] string group_name, [in] uint32 level, - [in] uint8 *buf, + [in] uint8 *buffer, [out] uint32 *parm_err ); @@ -523,7 +523,7 @@ interface libnetapi [in] string server_name, [in] string group_name, [in] uint32 level, - [out] uint8 **buf + [out] uint8 **buffer ); /*******************************************/ @@ -566,7 +566,7 @@ interface libnetapi [nopush,nopull] NET_API_STATUS NetLocalGroupAdd( [in] string server_name, [in] uint32 level, - [in] uint8 *buf, + [in] uint8 *buffer, [out,ref] uint32 *parm_err ); @@ -587,7 +587,7 @@ interface libnetapi [in] string server_name, [in] string group_name, [in] uint32 level, - [out,ref] uint8 **buf + [out,ref] uint8 **buffer ); /*******************************************/ @@ -598,7 +598,7 @@ interface libnetapi [in] string server_name, [in] string group_name, [in] uint32 level, - [in,ref] uint8 *buf, + [in,ref] uint8 *buffer, [out,ref] uint32 *parm_err ); @@ -637,6 +637,6 @@ interface libnetapi [nopush,nopull] NET_API_STATUS NetRemoteTOD( [in] string server_name, - [out,ref] uint8 **buf + [out,ref] uint8 **buffer ); } -- cgit