From b64be89a6ddd1b9c62df98801f34f4d9116a06bf Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 15 Apr 2008 20:41:14 +0200 Subject: auth: add SeDiskOperatorsPrivilege to get_root_nt_token to fix registry shares. Michael (This used to be commit 6bb107b17d557c27d035ca518ab61296814a3cea) --- source3/auth/token_util.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/auth') diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c index fc93060fc6..6720a2cbd8 100644 --- a/source3/auth/token_util.c +++ b/source3/auth/token_util.c @@ -105,6 +105,8 @@ NT_USER_TOKEN *get_root_nt_token( void ) token = create_local_nt_token(NULL, &u_sid, False, 1, &global_sid_Builtin_Administrators); + token->privileges = se_disk_operators; + memcache_add_talloc( NULL, SINGLETON_CACHE_TALLOC, data_blob_string_const("root_nt_token"), token); -- cgit