diff options
author | Amitay Isaacs <amitay@gmail.com> | 2015-10-26 16:50:46 +1100 |
---|---|---|
committer | Martin Schwenke <martins@samba.org> | 2015-10-30 02:00:27 +0100 |
commit | 01c6c90e9818a52854a44e2303362fc39631df2a (patch) | |
tree | e1905b896da147b20d3176f6a7bba4b9ec512e49 /ctdb/utils | |
parent | 2fdb332fad541efd34be749e55a07569ce2b4ef4 (diff) | |
download | samba-01c6c90e9818a52854a44e2303362fc39631df2a.tar.gz |
ctdb-daemon: Remove dependency on includes.h
Instead of includes.h, include the required header files explicitly.
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'ctdb/utils')
-rw-r--r-- | ctdb/utils/pmda/pmda_ctdb.c | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/ctdb/utils/pmda/pmda_ctdb.c b/ctdb/utils/pmda/pmda_ctdb.c index ca897b16c21..13c2d6fea1f 100644 --- a/ctdb/utils/pmda/pmda_ctdb.c +++ b/ctdb/utils/pmda/pmda_ctdb.c @@ -19,14 +19,25 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "replace.h" +#include "system/network.h" + +#include <talloc.h> +#include <tevent.h> + +#include "lib/util/time.h" + +#include "ctdb_private.h" +#include "ctdb_client.h" +#include "ctdb_protocol.h" + +#include "common/system.h" + #include <pcp/pmapi.h> #include <pcp/impl.h> #include <pcp/pmda.h> -#include "includes.h" -#include "ctdb_private.h" -#include "ctdb_protocol.h" + #include "domain.h" -#include "common/system.h" /* * CTDB PMDA |