diff options
author | Günther Deschner <gd@samba.org> | 2008-11-11 12:49:20 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-19 23:25:33 +0100 |
commit | f9d691d9d808ec2f91f3f469fe2201b0909a8552 (patch) | |
tree | 0dc1042629ae2a62c72fd40c402b612989a7008a /source3/rpc_client | |
parent | 12fdb5eb4628db08a665791fb76d15e9f5894478 (diff) | |
download | samba-f9d691d9d808ec2f91f3f469fe2201b0909a8552.tar.gz samba-f9d691d9d808ec2f91f3f469fe2201b0909a8552.tar.bz2 samba-f9d691d9d808ec2f91f3f469fe2201b0909a8552.zip |
s3-ntsvcs: remove old hand-marshalling for ntsvcs getdevregprop.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_reg.c | 17 |
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; -} |