From 4488dbd6c9cd77a9930eb7084687f607a38667b1 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 3 Jun 2003 21:40:02 +0000 Subject: [PATCH] Don't require hostmasks to be different with netsplits. Fixes dalnet netsplit detection. Patch by coekie git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3114 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/irc/core/netsplit.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/irc/core/netsplit.c b/src/irc/core/netsplit.c index 6117c345..04eb3ff0 100644 --- a/src/irc/core/netsplit.c +++ b/src/irc/core/netsplit.c @@ -275,10 +275,6 @@ int quitmsg_is_split(const char *msg) if (!host2_dot || prev == '.') return FALSE; - if (len == (int) (host2-host1)-1 && - g_strncasecmp(host1, host2, len) == 0) - return FALSE; /* hosts can't be the same */ - /* top-domain1 must be 2+ chars long and contain only alphabets */ p = host2-1; while (p[-1] != '.') {