From 384e35f8a754feb601fdd9d032c3aad121e0fbc3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 17 Jun 2010 07:51:15 +0200 Subject: s3:idmap_tdb: move definition of struct idmap_tdb_context up. --- source3/winbindd/idmap_tdb.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3') diff --git a/source3/winbindd/idmap_tdb.c b/source3/winbindd/idmap_tdb.c index 0b48247c3b..cb9e38ed90 100644 --- a/source3/winbindd/idmap_tdb.c +++ b/source3/winbindd/idmap_tdb.c @@ -33,6 +33,10 @@ #define IDMAP_VERSION 2 +struct idmap_tdb_context { + struct db_context *db; +}; + /* High water mark keys */ #define HWM_GROUP "GROUP HWM" #define HWM_USER "USER HWM" @@ -535,10 +539,6 @@ static NTSTATUS idmap_tdb_alloc_close(void) /********************************************************************** IDMAP MAPPING TDB BACKEND **********************************************************************/ - -struct idmap_tdb_context { - struct db_context *db; -}; /***************************** Initialise idmap database. -- cgit