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

ctdbd_conn: Avoid "includes.h"

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Volker Lendecke 2016-04-08 16:14:33 +02:00 committed by Ralph Boehme
parent d36def84ae
commit f0525d4e07
2 changed files with 10 additions and 2 deletions

View File

@ -20,7 +20,11 @@
#ifndef _CTDBD_CONN_H
#define _CTDBD_CONN_H
#include "replace.h"
#include "system/filesys.h"
#include "system/network.h"
#include <tdb.h>
#include <tevent.h>
struct ctdbd_connection;
struct messaging_context;

View File

@ -18,7 +18,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "replace.h"
#include "util_tdb.h"
#include "serverid.h"
#include "ctdbd_conn.h"
@ -26,6 +26,10 @@
#include "lib/util/sys_rw_data.h"
#include "lib/util/iov_buf.h"
#include "lib/util/select.h"
#include "lib/util/debug.h"
#include "lib/util/talloc_stack.h"
#include "lib/util/genrand.h"
#include "lib/util/fault.h"
#include "messages.h"
@ -1053,7 +1057,7 @@ int ctdbd_traverse(struct ctdbd_connection *conn, uint32_t db_id,
return ret;
}
while (True) {
while (true) {
struct ctdb_req_header *hdr = NULL;
struct ctdb_req_message_old *m;
struct ctdb_rec_data_old *d;