diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-01-24 04:34:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:18 -0500 |
commit | e7d0d22806e249e315c0cb6ebed4caa93b80e8e5 (patch) | |
tree | a354978ea502c01da67b4b6d02e7dd61fa65734d /source4/cluster/ctdb/common | |
parent | 8ffc4c430cf4942a1eaedec6fc60e9d538817a07 (diff) | |
download | samba-e7d0d22806e249e315c0cb6ebed4caa93b80e8e5.tar.gz samba-e7d0d22806e249e315c0cb6ebed4caa93b80e8e5.tar.bz2 samba-e7d0d22806e249e315c0cb6ebed4caa93b80e8e5.zip |
r20991: use relative includes for ctdb headers. This works with both
standalone and built-in ctdb
(This used to be commit 3e5f29bddfd83914eeec706367b2b1bd30aba31e)
Diffstat (limited to 'source4/cluster/ctdb/common')
-rw-r--r-- | source4/cluster/ctdb/common/ctdb.c | 2 | ||||
-rw-r--r-- | source4/cluster/ctdb/common/ctdb_call.c | 2 | ||||
-rw-r--r-- | source4/cluster/ctdb/common/ctdb_ltdb.c | 2 | ||||
-rw-r--r-- | source4/cluster/ctdb/common/ctdb_util.c | 3 |
4 files changed, 4 insertions, 5 deletions
diff --git a/source4/cluster/ctdb/common/ctdb.c b/source4/cluster/ctdb/common/ctdb.c index ba00e7caa0..94715f6226 100644 --- a/source4/cluster/ctdb/common/ctdb.c +++ b/source4/cluster/ctdb/common/ctdb.c @@ -24,7 +24,7 @@ #include "lib/util/dlinklist.h" #include "system/network.h" #include "system/filesys.h" -#include "cluster/ctdb/include/ctdb_private.h" +#include "../include/ctdb_private.h" /* choose the transport we will use diff --git a/source4/cluster/ctdb/common/ctdb_call.c b/source4/cluster/ctdb/common/ctdb_call.c index aace5971e2..9b21ce7cb2 100644 --- a/source4/cluster/ctdb/common/ctdb_call.c +++ b/source4/cluster/ctdb/common/ctdb_call.c @@ -26,7 +26,7 @@ #include "lib/tdb/include/tdb.h" #include "system/network.h" #include "system/filesys.h" -#include "cluster/ctdb/include/ctdb_private.h" +#include "../include/ctdb_private.h" /* queue a packet or die diff --git a/source4/cluster/ctdb/common/ctdb_ltdb.c b/source4/cluster/ctdb/common/ctdb_ltdb.c index fbf6a3e567..10bcde43b5 100644 --- a/source4/cluster/ctdb/common/ctdb_ltdb.c +++ b/source4/cluster/ctdb/common/ctdb_ltdb.c @@ -23,7 +23,7 @@ #include "lib/tdb/include/tdb.h" #include "system/network.h" #include "system/filesys.h" -#include "cluster/ctdb/include/ctdb_private.h" +#include "../include/ctdb_private.h" #include "db_wrap.h" diff --git a/source4/cluster/ctdb/common/ctdb_util.c b/source4/cluster/ctdb/common/ctdb_util.c index 8e25759609..cf0c72a58b 100644 --- a/source4/cluster/ctdb/common/ctdb_util.c +++ b/source4/cluster/ctdb/common/ctdb_util.c @@ -23,7 +23,7 @@ #include "lib/tdb/include/tdb.h" #include "system/network.h" #include "system/filesys.h" -#include "cluster/ctdb/include/ctdb_private.h" +#include "../include/ctdb_private.h" /* return error string for last error @@ -47,7 +47,6 @@ void ctdb_set_error(struct ctdb_context *ctdb, const char *fmt, ...) va_end(ap); } - /* a fatal internal error occurred - no hope for recovery */ |