From 04f29b84a4bf2378d326b86a983792095231922e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Sat, 13 Sep 2008 15:02:56 +0200 Subject: [PATCH] Registry client library: Fixes the creation of new keys Giving the right permissions --- source4/lib/registry/rpc.c | 2 +- source4/lib/registry/tools/regshell.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source4/lib/registry/rpc.c b/source4/lib/registry/rpc.c index 7469bb60d89..69da90128ea 100644 --- a/source4/lib/registry/rpc.c +++ b/source4/lib/registry/rpc.c @@ -348,7 +348,7 @@ static WERROR rpc_add_key(TALLOC_CTX *mem_ctx, chars_to_winreg_String(mem_ctx, &r.in.name, name); chars_to_winreg_String(mem_ctx, &r.in.keyclass, NULL); r.in.options = 0; - r.in.access_mask = SEC_STD_ALL; + r.in.access_mask = 0x02000000; r.in.secdesc = NULL; r.in.action_taken = NULL; r.out.new_handle = &rpck->pol; diff --git a/source4/lib/registry/tools/regshell.c b/source4/lib/registry/tools/regshell.c index 208b19fba88..5c308bfbda8 100644 --- a/source4/lib/registry/tools/regshell.c +++ b/source4/lib/registry/tools/regshell.c @@ -246,7 +246,8 @@ static WERROR cmd_mkkey(struct regshell_context *ctx, int argc, char **argv) error = reg_key_add_name(ctx, ctx->current, argv[1], 0, NULL, &tmp); if (!W_ERROR_IS_OK(error)) { - fprintf(stderr, "Error adding new subkey '%s'\n", argv[1]); + fprintf(stderr, "Error adding new subkey '%s': %s\n", argv[1], + win_errstr(error)); return error; } -- 2.34.1