X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=blobdiff_plain;f=lib%2Ftdb%2Fcommon%2Fopen.c;h=b19e4cea293df769a588db89c71df25529d677ec;hp=e58c8ca7ff3c5b309a164199d5dc457b34686054;hb=fa91bc67199f0d45a0e570b43aeafd816a5491bf;hpb=42b28ee95d0884c465fd2762ee9cbf1044a8bd4d diff --git a/lib/tdb/common/open.c b/lib/tdb/common/open.c index e58c8ca7ff3..b19e4cea293 100644 --- a/lib/tdb/common/open.c +++ b/lib/tdb/common/open.c @@ -461,10 +461,6 @@ fail: /* reopen all tdb's */ int tdb_reopen_all(int parent_longlived) { -#if defined(LIBREPLACE_PREAD_NOT_REPLACED) && \ - defined(LIBREPLACE_PWRITE_NOT_REPLACED) - return 0; -#else struct tdb_context *tdb; for (tdb=tdbs; tdb; tdb = tdb->next) { @@ -487,7 +483,6 @@ int tdb_reopen_all(int parent_longlived) if (tdb_reopen(tdb) != 0) return -1; } -#endif return 0; }