summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-11-19 15:06:05 -0800
committerJeremy Allison <jra@samba.org>2008-11-19 15:06:05 -0800
commit804e63909bc3c9e4e2ca67f67eb56a1422f85fba (patch)
tree32a567b8ecfbafbe5938fd9a99a3565c2eeb77e6 /source3/rpc_client
parent31a8c4df1305b63729e49a61e27bc9e1825af0d0 (diff)
parentf9d691d9d808ec2f91f3f469fe2201b0909a8552 (diff)
downloadsamba-804e63909bc3c9e4e2ca67f67eb56a1422f85fba.tar.gz
samba-804e63909bc3c9e4e2ca67f67eb56a1422f85fba.tar.bz2
samba-804e63909bc3c9e4e2ca67f67eb56a1422f85fba.zip
Merge branch 'master' of ssh://jra@git.samba.org/data/git/samba
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_reg.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/rpc_client/cli_reg.c b/source3/rpc_client/cli_reg.c
index ba98e25d63..2ed7119f4b 100644
--- a/source3/rpc_client/cli_reg.c
+++ b/source3/rpc_client/cli_reg.c
@@ -60,20 +60,3 @@ NTSTATUS rpccli_winreg_Connect(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
return NT_STATUS_INVALID_PARAMETER;
}
-
-/*******************************************************************
- Fill in a REGVAL_BUFFER for the data given a REGISTRY_VALUE
- *******************************************************************/
-
-uint32 reg_init_regval_buffer( REGVAL_BUFFER *buf2, REGISTRY_VALUE *val )
-{
- uint32 real_size = 0;
-
- if ( !buf2 || !val )
- return 0;
-
- real_size = regval_size(val);
- init_regval_buffer( buf2, (unsigned char*)regval_data_p(val), real_size );
-
- return real_size;
-}