summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schwenke <martin@meltin.net>2018-06-14 16:17:09 +1000
committerKarolin Seeger <kseeger@samba.org>2018-07-10 10:44:12 +0200
commitf4d7abd5a76aca82e98c714806a649fee80f8cba (patch)
tree34b75b01cd719ff6452e069fad5bd8988880c532
parenteaa3c9a22f6199ae45b2431e9d6cc3da00744300 (diff)
downloadsamba-f4d7abd5a76aca82e98c714806a649fee80f8cba.tar.gz
ctdb-client: Fix typo where CTDB_BROADCAST_ALL is repeated
Surely this is meant to be CTDB_BROADCAST_CONNECTED? BUG: https://bugzilla.samba.org/show_bug.cgi?id=13499 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 77db0b15b56f9921961bd753c210e6fdbaf97f6d)
-rw-r--r--ctdb/client/client_tunnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/client/client_tunnel.c b/ctdb/client/client_tunnel.c
index 17b65469ae9..3ef78621712 100644
--- a/ctdb/client/client_tunnel.c
+++ b/ctdb/client/client_tunnel.c
@@ -432,7 +432,7 @@ struct tevent_req *ctdb_tunnel_request_send(TALLOC_CTX *mem_ctx,
if (destnode == CTDB_BROADCAST_ALL ||
destnode == CTDB_BROADCAST_VNNMAP ||
- destnode == CTDB_BROADCAST_ALL) {
+ destnode == CTDB_BROADCAST_CONNECTED) {
state->wait_for_reply = false;
}
if (! state->wait_for_reply) {