svn commit: samba r16938 - in
branches/SAMBA_4_0/source/lib/tdb/tools: .
abartlet at samba.org
abartlet at samba.org
Tue Jul 11 07:15:24 GMT 2006
Author: abartlet
Date: 2006-07-11 07:15:21 +0000 (Tue, 11 Jul 2006)
New Revision: 16938
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16938
Log:
Fix breakage of TDB on VOS (declaration after statement)
Andrew Bartlett
Modified:
branches/SAMBA_4_0/source/lib/tdb/tools/tdbtool.c
Changeset:
Modified: branches/SAMBA_4_0/source/lib/tdb/tools/tdbtool.c
===================================================================
--- branches/SAMBA_4_0/source/lib/tdb/tools/tdbtool.c 2006-07-11 03:46:22 UTC (rev 16937)
+++ branches/SAMBA_4_0/source/lib/tdb/tools/tdbtool.c 2006-07-11 07:15:21 UTC (rev 16938)
@@ -183,10 +183,11 @@
static void create_tdb(void)
{
+ char *tok = get_token(1);
+
struct tdb_logging_context log_ctx;
log_ctx.log_fn = tdb_log;
- char *tok = get_token(1);
if (!tok) {
help();
return;
More information about the samba-cvs
mailing list