From f8dadebbcf1de4ccac239c2a05ded3d59f790ec8 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Tue, 6 May 2008 07:57:43 +1000 Subject: Use DEBUG_ERR and not DEBUG_WARNING when we get a connection attempt from a non-ctdb host (This used to be ctdb commit 40c7a536c6b428caef7904a1de860d82a70748af) --- ctdb/tcp/tcp_connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ctdb/tcp') diff --git a/ctdb/tcp/tcp_connect.c b/ctdb/tcp/tcp_connect.c index 0ead087c5bd..f3b4f7d3089 100644 --- a/ctdb/tcp/tcp_connect.c +++ b/ctdb/tcp/tcp_connect.c @@ -217,7 +217,7 @@ static void ctdb_listen_event(struct event_context *ev, struct fd_event *fde, nodeid = ctdb_ip_to_nodeid(ctdb, incoming_node); if (nodeid == -1) { - DEBUG(DEBUG_WARNING, ("Refused connection from unknown node %s\n", incoming_node)); + DEBUG(DEBUG_ERR, ("Refused connection from unknown node %s\n", incoming_node)); close(fd); return; } -- cgit