diff options
author | Günther Deschner <gd@samba.org> | 2010-09-17 13:14:50 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-19 02:47:10 +0200 |
commit | 47a7a5830c145dd12e200fa12fec41bc745046d3 (patch) | |
tree | 3d35e032fcf26f5e11b375d30ffa22fa47ac4a9d | |
parent | 1473330bbe7c4f28ec00e69035386bf8fe11d9e7 (diff) | |
download | samba-47a7a5830c145dd12e200fa12fec41bc745046d3.tar.gz samba-47a7a5830c145dd12e200fa12fec41bc745046d3.tar.bz2 samba-47a7a5830c145dd12e200fa12fec41bc745046d3.zip |
libnetapi: deal with NULL data in I_NetLogonControl2().
Guenther
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index f83896cf72..935256af16 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -1936,7 +1936,7 @@ interface libnetapi [in] string server_name, [in] uint32 function_code, [in] uint32 query_level, - [in] uint8 *data, + [in,unique] uint8 *data, [out,ref] uint8 **buffer ); } |