diff options
author | Günther Deschner <gd@samba.org> | 2010-07-02 13:08:00 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-07-02 13:09:41 +0200 |
commit | 61e956036e28b8fe8c57ab47c478a542cbf44532 (patch) | |
tree | 6b0335f91f2449af6ca295fd2c3ced86d73a3e6d | |
parent | 62341537d7c43d678e66ba663ad07be629e3328e (diff) | |
download | samba-61e956036e28b8fe8c57ab47c478a542cbf44532.tar.gz samba-61e956036e28b8fe8c57ab47c478a542cbf44532.tar.bz2 samba-61e956036e28b8fe8c57ab47c478a542cbf44532.zip |
s3-net: forgot to set type in winreg getvalue operation.
Guenther
-rw-r--r-- | source3/utils/net_rpc_registry.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c index 0f781bbc03..08142357a9 100644 --- a/source3/utils/net_rpc_registry.c +++ b/source3/utils/net_rpc_registry.c @@ -608,6 +608,8 @@ static NTSTATUS rpc_registry_getvalue_internal(struct net_context *c, goto done; } + value->type = type; + print_registry_value(value, raw); done: |