1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

ctdb-common: Replace ctdb_logging.h with common/logging.h

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Amitay Isaacs 2015-11-11 15:19:17 +11:00 committed by Martin Schwenke
parent 7258e1d9c9
commit 3f314154fe
4 changed files with 5 additions and 5 deletions

View File

@ -31,11 +31,11 @@
#include "lib/util/dlinklist.h"
#include "lib/util/debug.h"
#include "ctdb_logging.h"
#include "ctdb_private.h"
#include "ctdb_client.h"
#include "common/system.h"
#include "common/logging.h"
#include "common/common.h"
#define QUEUE_BUFFER_SIZE (16*1024)

View File

@ -28,10 +28,10 @@
#include "lib/util/dlinklist.h"
#include "lib/util/debug.h"
#include "ctdb_logging.h"
#include "ctdb_private.h"
#include "common/common.h"
#include "common/logging.h"
/*
find an attached ctdb_db handle given a name

View File

@ -27,12 +27,12 @@
#include "lib/util/debug.h"
#include "lib/util/samba_util.h"
#include "ctdb_logging.h"
#include "ctdb_private.h"
#include "common/reqid.h"
#include "common/system.h"
#include "common/common.h"
#include "common/logging.h"
/*
return error string for last error

View File

@ -22,9 +22,9 @@
#include <talloc.h>
#include "lib/util/debug.h"
#include "ctdb_logging.h"
#include "rb_tree.h"
#include "common/logging.h"
#include "common/rb_tree.h"
#define NO_MEMORY_FATAL(p) do { if (!(p)) { \
DEBUG(DEBUG_CRIT,("Out of memory for %s at %s\n", #p, __location__)); \