summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-29 16:12:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-29 16:12:38 +0000
commitbb23bf06b484cced3361b304bb974ef5bee55323 (patch)
tree14b9c13f2978b39008fa5d497d05d09ce909a99f
parentdb11f2b24c6aeb5ab7ba4678638890bc68b1d0c1 (diff)
Fixed a reversed strcmp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1264 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index 610b694bc..d62ad4bcc 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -1864,7 +1864,7 @@ void handle_V(char token,char* params,serverrec* source,serverrec* reply, char*
if (user)
{
// notice all - only issuable by a server
- if (strcmp(dest,"*"))
+ if (!strcmp(dest,"*"))
{
NoticeAll(user,true,"%s",text);
}