summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-04 18:33:05 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-04 18:33:05 +0000
commit31900d8083615e8d3af2317410360fdaa75eba56 (patch)
treef368f034d5099303ae1081314d4a1f518547d869 /src
parentdaa68cffe0b8231864dab7a89c72faececc00b3c (diff)
Changed to handle : as a NOP token so that 'assuming' inspircd knows RFC commands wont cause tons of errors
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1305 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/commands.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index edfd163db..6cda474ac 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -2861,6 +2861,9 @@ void process_restricted_commands(char token,char* params,serverrec* source,serve
// no operation
case '*':
break;
+ // no operation - reserved to prevent services issues
+ case ':':
+ break;
// N <TS> <NICK> <HOST> <DHOST> <IDENT> <MODES> <SERVER> :<GECOS>
// introduce remote client
case 'N':