r18832: fixed standalone build
authorAndrew Tridgell <tridge@samba.org>
Fri, 22 Sep 2006 23:25:16 +0000 (23:25 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:19:15 +0000 (14:19 -0500)
(This used to be commit 1ebc098b6776d38451e441280ac13664d64569f4)

source4/lib/ldb/ldb_tdb/ldb_tdb_wrap.c

index 7f81949fdc910a107582d61f6cf286574b909e87..654afea2f158d001eb17ec28d697ee2b55aa5af1 100644 (file)
@@ -58,7 +58,22 @@ static int ltdb_wrap_destructor(struct ltdb_wrap *w)
        return 0;
 }                               
 
-#if (_SAMBA_BUILD_ >= 4)
+#if defined(_SAMBA_BUILD_) && (_SAMBA_BUILD_ <= 3)
+static void ltdb_log_fn(struct tdb_context *tdb, int level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
+static void ltdb_log_fn(struct tdb_context *tdb, int level, const char *fmt, ...)
+{
+       /* until we merge the tdb debug changes into samba3, we don't know 
+          how serious the error is, and we can't go via the ldb loggin code */
+       va_list ap;
+       const char *name = tdb_name(tdb);
+       char *message; 
+       va_start(ap, fmt);
+       message = talloc_vasprintf(NULL, fmt, ap);
+       va_end(ap);
+       DEBUG(3, ("ltdb: tdb(%s): %s", name, message));
+       talloc_free(message);
+}
+#else
 static void ltdb_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
 static void ltdb_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
 {
@@ -91,21 +106,6 @@ static void ltdb_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, con
        ldb_debug(ldb, ldb_level, "ltdb: tdb(%s): %s", name, message);
        talloc_free(message);
 }
-#else
-static void ltdb_log_fn(struct tdb_context *tdb, int level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
-static void ltdb_log_fn(struct tdb_context *tdb, int level, const char *fmt, ...)
-{
-       /* until we merge the tdb debug changes into samba3, we don't know 
-          how serious the error is, and we can't go via the ldb loggin code */
-       va_list ap;
-       const char *name = tdb_name(tdb);
-       char *message; 
-       va_start(ap, fmt);
-       message = talloc_vasprintf(NULL, fmt, ap);
-       va_end(ap);
-       DEBUG(3, ("ltdb: tdb(%s): %s", name, message));
-       talloc_free(message);
-}
 #endif
 
 /*
@@ -122,13 +122,13 @@ struct tdb_context *ltdb_wrap_open(TALLOC_CTX *mem_ctx,
 {
        struct ltdb_wrap *w;
        struct stat st;
-#if (_SAMBA_BUILD_ >= 4)
+#if (_SAMBA_BUILD_ <= 3)
+       tdb_log_func log_ctx_p = ltdb_log_fn;
+#else
        struct tdb_logging_context log_ctx;
        struct tdb_logging_context log_ctx_p = &log_ctx;
        log_ctx.log_fn = ltdb_log_fn;
        log_ctx.log_private = ldb;
-#else
-       tdb_log_func log_ctx_p = ltdb_log_fn;
 #endif
 
        if (stat(path, &st) == 0) {