summaryrefslogtreecommitdiff
path: root/source3/rpc_client/cli_winreg.c
AgeCommit message (Collapse)AuthorFilesLines
2011-07-13s3-rpc_client: Added dcerpc_winreg_delete_subkeys_recursive() function.Vicentiu Ciorbaru1-0/+101
This function is set to replace the more specific printer function winreg_printer_delete_subkeys(). Signed-off-by: Andreas Schneider <asn@samba.org>
2011-07-13s3-rpc_client: Added dcerpc_winreg_enumvals() function.Vicentiu Ciorbaru1-0/+179
The function is set to replace the more specific printer function winreg_printer_enumvalues() function. Signed-off-by: Andreas Schneider <asn@samba.org>
2011-07-08winreg: Ensure server return status is set on successDavid Disseldorp1-83/+30
Currently cli_winreg.c functions only set the returned server werror status on failure, if the server request succeeds the value remains uninitialised. Signed-off-by: Andreas Schneider <asn@samba.org> Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Fri Jul 8 16:32:39 CEST 2011 on sn-devel-104
2011-07-08winreg: Use the ntstatus return code for client side errorsDavid Disseldorp1-37/+21
cli_winreg.c functions indicate status to the caller in two ways. The ntstatus return code indicates client side errors, the pwerr argument carries the server response error code. Many functions are filling the pwerr argument on client side error, this change removes these cases. Signed-off-by: Andreas Schneider <asn@samba.org>
2011-06-21s3-rpc_client: Fix some valgrind warnings.Andreas Schneider1-10/+12
These are in/out values and need to be initialized. Signed-off-by: Günther Deschner <gd@samba.org>
2011-06-09s3-talloc Change TALLOC_REALLOC_ARRAY() to talloc_realloc()Andrew Bartlett1-1/+1
Using the standard macro makes it easier to move code into common, as TALLOC_REALLOC_ARRAY isn't standard talloc. Andrew Bartlett
2011-03-30registry: create and use shared libcli/registry/util_reg.h header.Günther Deschner1-0/+1
Guenther
2011-03-16s3: Fix Coverity ID 2319: Uninitialized readVolker Lendecke1-1/+1
We passed the structure including the uninitialized elements to dcerpc_winreg_SetValue.
2011-03-15s3: Fix Coverity ID 2278: Uninitialized readVolker Lendecke1-1/+1
We passed the structure including the uninitialized elements to dcerpc_winreg_SetValue.
2011-03-15s3: Fix Coverity ID 2280: Uninitialized readVolker Lendecke1-1/+1
We passed the structure including the uninitialized elements to dcerpc_winreg_SetValue.
2011-03-15s3: Fix Coverity ID 2282: Uninitialized readVolker Lendecke1-1/+1
We passed the structure including the uninitialized elements to dcerpc_winreg_SetValue.
2011-03-15s3: Fix Coverity ID 2288: Uninitialized readVolker Lendecke1-1/+1
We passed the structure including the uninitialized elements to dcerpc_winreg_SetValue.
2011-02-07s3-rpc_client: Added a winreg query security descriptor helper.Andreas Schneider1-0/+52
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set security descriptor helper.Andreas Schneider1-0/+30
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set binary helper.Andreas Schneider1-0/+31
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg query sz helper.Andreas Schneider1-0/+75
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg helper to enum keys.Andreas Schneider1-0/+135
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg add multi sz helper.Andreas Schneider1-0/+42
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg query multi sz helper.Andreas Schneider1-0/+75
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set multi sz helper.Andreas Schneider1-0/+39
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set expand sz helper.Andreas Schneider1-0/+43
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set sz helper.Andreas Schneider1-0/+43
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added a winreg set dword helper.Andreas Schneider1-0/+34
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added winreg query binary helper.Andreas Schneider1-0/+71
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-rpc_client: Added winreg query dword helper.Andreas Schneider1-0/+101
Signed-off-by: Günther Deschner <gd@samba.org>