From: Andrew Tridgell Date: Tue, 17 Apr 2007 07:10:50 +0000 (+1000) Subject: stop the client looping (temporary measure) X-Git-Tag: tevent-0.9.20~348^2~2896 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d8bf8e781d529dda357973e40d16bb9ae39fbf4;p=thirdparty%2Fsamba.git stop the client looping (temporary measure) (This used to be ctdb commit 8e6a25f4c4a63145c0dee33453a0693dd395ee68) --- diff --git a/ctdb/common/ctdb_client.c b/ctdb/common/ctdb_client.c index ddc9af4cf3b..7ce36e71333 100644 --- a/ctdb/common/ctdb_client.c +++ b/ctdb/common/ctdb_client.c @@ -95,6 +95,7 @@ static void ctdb_client_read_cb(uint8_t *data, size_t cnt, void *args) if (cnt < sizeof(*hdr)) { ctdb_set_error(ctdb, "Bad packet length %d in client\n", cnt); + exit(1); return; } hdr = (struct ctdb_req_header *)data;