1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

source4/dsdb/samdb: Fix prototypes for all functions.

This commit is contained in:
Jelmer Vernooij 2011-03-19 00:43:26 +01:00
parent c104e4ca54
commit 8b271e4328
4 changed files with 4 additions and 2 deletions

View File

@ -60,7 +60,7 @@ struct descriptor_context {
int (*step_fn)(struct descriptor_context *);
};
struct dom_sid *get_default_ag(TALLOC_CTX *mem_ctx,
static struct dom_sid *get_default_ag(TALLOC_CTX *mem_ctx,
struct ldb_dn *dn,
struct security_token *token,
struct ldb_context *ldb)

View File

@ -34,6 +34,7 @@
#include "lib/messaging/irpc.h"
#include "param/param.h"
#include "librpc/gen_ndr/ndr_misc.h"
#include "dsdb/samdb/ldb_modules/ridalloc.h"
/*
Note: the RID allocation attributes in AD are very badly named. Here

View File

@ -27,6 +27,7 @@
#include "dsdb/samdb/samdb.h"
#include "util.h"
#include "libcli/security/security.h"
#include "dsdb/samdb/ldb_modules/schema.h"
const struct dsdb_class * get_last_structural_class(const struct dsdb_schema *schema,const struct ldb_message_element *element,

View File

@ -38,7 +38,7 @@ struct schema_load_private_data {
static int dsdb_schema_from_db(struct ldb_module *module, struct ldb_dn *schema_dn, uint64_t current_usn,
struct dsdb_schema **schema);
struct dsdb_schema *dsdb_schema_refresh(struct ldb_module *module, struct dsdb_schema *schema, bool is_global_schema)
static struct dsdb_schema *dsdb_schema_refresh(struct ldb_module *module, struct dsdb_schema *schema, bool is_global_schema)
{
uint64_t current_usn;
int ret;