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

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)
This commit is contained in:
Ronnie Sahlberg 2008-05-06 07:57:43 +10:00
parent f148f1b3ce
commit f8dadebbcf

View File

@ -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;
}