aboutsummaryrefslogtreecommitdiffstats
path: root/src/connection.cpp
diff options
context:
space:
mode:
authorGravatar brain2004-04-16 14:29:52 +0000
committerGravatar brain2004-04-16 14:29:52 +0000
commitcccf28594cc5bcbe5025adb0d6c66af3b664426f (patch)
tree71a474ae1113b88edf1c3959fd8bf64c218035cf /src/connection.cpp
parentSQUIT stuff (diff)
downloadinspircd++-cccf28594cc5bcbe5025adb0d6c66af3b664426f.tar.gz
inspircd++-cccf28594cc5bcbe5025adb0d6c66af3b664426f.tar.bz2
inspircd++-cccf28594cc5bcbe5025adb0d6c66af3b664426f.zip
More SQUIT fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@616 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
-rw-r--r--src/connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp
index da8974be3..9344b1621 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -354,7 +354,7 @@ bool connection::SendPacket(char *message, const char* host)
}
char buffer[MAXBUF];
snprintf(buffer,MAXBUF,"& %s",host);
- NetSendToAllAlive(buffer);
+ NetSendToAllExcept(host,buffer);
log(DEBUG,"There are no routes to %s, we're gonna boot the server off!",host);
return false;
}