From a0cbe469bca5635f001b0f7b2e7e9d58775ff81f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 12 Oct 2011 11:17:57 +0200 Subject: s3-groupdb: split out groupdb/mapping_tdb.h. Guenther --- source3/groupdb/mapping.c | 1 + source3/groupdb/mapping_tdb.c | 1 + source3/groupdb/mapping_tdb.h | 30 ++++++++++++++++++++++++++++++ source3/groupdb/proto.h | 4 ---- 4 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 source3/groupdb/mapping_tdb.h (limited to 'source3/groupdb') diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index e9a6c3b729..907d40fe2a 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -27,6 +27,7 @@ #include "../libcli/security/security.h" #include "lib/winbind_util.h" #include "tdb_compat.h" +#include "groupdb/mapping_tdb.h" static const struct mapping_backend *backend; diff --git a/source3/groupdb/mapping_tdb.c b/source3/groupdb/mapping_tdb.c index 447f1871de..0c4b2fa405 100644 --- a/source3/groupdb/mapping_tdb.c +++ b/source3/groupdb/mapping_tdb.c @@ -28,6 +28,7 @@ #include "dbwrap/dbwrap_open.h" #include "util_tdb.h" #include "../libcli/security/security.h" +#include "groupdb/mapping_tdb.h" static struct db_context *db; /* used for driver files */ diff --git a/source3/groupdb/mapping_tdb.h b/source3/groupdb/mapping_tdb.h new file mode 100644 index 0000000000..86b0ecb133 --- /dev/null +++ b/source3/groupdb/mapping_tdb.h @@ -0,0 +1,30 @@ +/* + * Unix SMB/CIFS implementation. + * RPC Pipe client / server routines + * Copyright (C) Andrew Tridgell 1992-2006, + * Copyright (C) Jean François Micouleau 1998-2001. + * Copyright (C) Volker Lendecke 2006. + * Copyright (C) Gerald Carter 2006. + * + * 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 . + */ + +#ifndef _GROUPDB_MAPPING_TDB_H_ +#define _GROUPDB_MAPPING_TDB_H_ + +/* The following definitions come from groupdb/mapping_tdb.c */ + +const struct mapping_backend *groupdb_tdb_init(void); + +#endif /* _GROUPDB_MAPPING_TDB_H_ */ diff --git a/source3/groupdb/proto.h b/source3/groupdb/proto.h index f30584cc8f..ddcdf7a3b9 100644 --- a/source3/groupdb/proto.h +++ b/source3/groupdb/proto.h @@ -93,8 +93,4 @@ NTSTATUS pdb_nop_enum_group_mapping(struct pdb_methods *methods, bool unix_only); NTSTATUS pdb_create_builtin_alias(uint32 rid); -/* The following definitions come from groupdb/mapping_tdb.c */ - -const struct mapping_backend *groupdb_tdb_init(void); - #endif /* _GROUPDB_PROTO_H_ */ -- cgit