From 1dfb20d0292623f21f47e93afaba865d9ff3b05b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 16 Jun 2010 15:31:05 +0200 Subject: s3:idmap_tdb2: move definition of struct idmap_tdb2_context up. --- source3/winbindd/idmap_tdb2.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c index f7935fb3b9..0ea84c697e 100644 --- a/source3/winbindd/idmap_tdb2.c +++ b/source3/winbindd/idmap_tdb2.c @@ -36,6 +36,11 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_IDMAP +struct idmap_tdb2_context { + uint32_t filter_low_id; + uint32_t filter_high_id; +}; + /* High water mark keys */ #define HWM_GROUP "GROUP HWM" #define HWM_USER "USER HWM" @@ -314,10 +319,6 @@ static NTSTATUS idmap_tdb2_get_new_id(struct idmap_domain *dom, /* IDMAP MAPPING TDB BACKEND */ -struct idmap_tdb2_context { - uint32_t filter_low_id; - uint32_t filter_high_id; -}; /* Initialise idmap database. -- cgit