1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:registry: move prototype registry_create_admin_token() to new header reg_util_token.h

and use it only where necessary.
This commit is contained in:
Michael Adam 2010-05-24 23:37:09 +02:00
parent e3f7fab668
commit f3053739b7
5 changed files with 29 additions and 2 deletions

View File

@ -67,8 +67,6 @@ WERROR registry_init_full(void);
/* The following definitions come from registry/reg_init_smbconf.c */
NTSTATUS registry_create_admin_token(TALLOC_CTX *mem_ctx,
NT_USER_TOKEN **ptoken);
WERROR registry_init_smbconf(const char *keyname);
/* The following definitions come from lib/util_reg_api.c */

View File

@ -21,6 +21,7 @@
#include "lib/smbconf/smbconf_private.h"
#include "registry.h"
#include "registry/reg_backend_db.h"
#include "registry/reg_util_token.h"
#include "lib/smbconf/smbconf_init.h"
#include "lib/smbconf/smbconf_reg.h"

View File

@ -18,6 +18,7 @@
*/
#include "includes.h"
#include "reg_util_token.h"
/*
* create a fake token just with enough rights to

View File

@ -0,0 +1,26 @@
/*
* Unix SMB/CIFS implementation.
* Registry helper routines
* Copyright (C) Michael Adam 2007
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _REG_UTIL_TOKEN_H
#define _REG_UTIL_TOKEN_H
NTSTATUS registry_create_admin_token(TALLOC_CTX *mem_ctx,
NT_USER_TOKEN **ptoken);
#endif /* _REG_UTIL_TOKEN_H */

View File

@ -21,6 +21,7 @@
#include "includes.h"
#include "registry.h"
#include "registry/reg_util_token.h"
#include "utils/net.h"
#include "utils/net_registry_util.h"
#include "include/g_lock.h"