From 41333f92d0c78e44a524f2248f5ae641ad59abf3 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 11 Apr 2013 17:12:16 +0930 Subject: ntdb: remove --disable-ntdb. Remove DISABLE_NTDB option, and --disable-ntdb from waf build. This just means that it will always get built: it isn't used by default yet. Signed-off-by: Rusty Russell Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Sat Apr 13 02:01:02 CEST 2013 on sn-devel-104 --- lib/param/util.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/param') diff --git a/lib/param/util.c b/lib/param/util.c index 29266c493d..8c3badfcb9 100644 --- a/lib/param/util.c +++ b/lib/param/util.c @@ -206,11 +206,9 @@ char *lpcfg_private_db_path(TALLOC_CTX *mem_ctx, { const char *extension = ".tdb"; -#ifndef DISABLE_NTDB if (lpcfg_use_ntdb(lp_ctx)) { extension = ".ntdb"; } -#endif return talloc_asprintf(mem_ctx, "%s/%s%s", lpcfg_private_dir(lp_ctx), name, extension); -- cgit