svn commit: samba r23338 - in
branches/SAMBA_3_0_26/source/lib/ldb/ldb_tdb: .
metze at samba.org
metze at samba.org
Mon Jun 4 14:26:08 GMT 2007
Author: metze
Date: 2007-06-04 14:26:07 +0000 (Mon, 04 Jun 2007)
New Revision: 23338
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23338
Log:
merge from SAMBA_3_0:
fix a crash bug...I wonder why only HP-UX 11.00 ans 11.11 noticed
it via a SIGBUS...
I missed to remove the samba3 specifc code path to tdb_open_ex()
when I synced lib/tdb/ with samba4. The explicit cast in on tdb_open_ex()
dropped the compiler warning :-(
metze
Modified:
branches/SAMBA_3_0_26/source/lib/ldb/ldb_tdb/ldb_tdb_wrap.c
Changeset:
Modified: branches/SAMBA_3_0_26/source/lib/ldb/ldb_tdb/ldb_tdb_wrap.c
===================================================================
--- branches/SAMBA_3_0_26/source/lib/ldb/ldb_tdb/ldb_tdb_wrap.c 2007-06-04 14:25:52 UTC (rev 23337)
+++ branches/SAMBA_3_0_26/source/lib/ldb/ldb_tdb/ldb_tdb_wrap.c 2007-06-04 14:26:07 UTC (rev 23338)
@@ -58,27 +58,11 @@
return 0;
}
-#if defined(_SAMBA_BUILD_) && (_SAMBA_BUILD_ <= 3)
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, ...)
{
- /* 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, ...)
-{
- va_list ap;
- const char *name = tdb_name(tdb);
struct ldb_context *ldb = talloc_get_type(tdb_get_logging_private(tdb), struct ldb_context);
enum ldb_debug_level ldb_level;
char *message;
@@ -106,7 +90,6 @@
ldb_debug(ldb, ldb_level, "ltdb: tdb(%s): %s", name, message);
talloc_free(message);
}
-#endif
/*
wrapped connection to a tdb database. The caller should _not_ free
@@ -122,14 +105,10 @@
{
struct ltdb_wrap *w;
struct stat st;
-#if defined(_SAMBA_BUILD_) && (_SAMBA_BUILD_ <= 3)
- tdb_log_func log_ctx_p = ltdb_log_fn;
-#else
struct tdb_logging_context log_ctx;
- const struct tdb_logging_context *log_ctx_p = &log_ctx;
+
log_ctx.log_fn = ltdb_log_fn;
log_ctx.log_private = ldb;
-#endif
if (stat(path, &st) == 0) {
for (w=tdb_list;w;w=w->next) {
@@ -147,9 +126,7 @@
return NULL;
}
- w->tdb = tdb_open_ex(path, hash_size, tdb_flags, open_flags, mode,
- (const struct tdb_logging_context *)log_ctx_p,
- NULL);
+ w->tdb = tdb_open_ex(path, hash_size, tdb_flags, open_flags, mode, &log_ctx, NULL);
if (w->tdb == NULL) {
talloc_free(w);
return NULL;
More information about the samba-cvs
mailing list