diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-25 15:11:44 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-25 15:11:44 +0000 |
commit | 77b32677820dfa6ce92395d6d6c02c80f84485b0 (patch) | |
tree | 520e87af43db20134e0356b44c0dfdbaecc09950 /src | |
parent | 5e6e38272250d2862e0eec59ad9ad6710c420e5f (diff) |
Fixed an 'unknown token' alert when QLine triggered by services
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@728 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/commands.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 69fea5ec5..d5ec4307c 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -2413,6 +2413,10 @@ void handle_link_packet(char* udp_msg, char* tcp_host, serverrec *serv) { token = '*'; } + if (!strcmp(command,"432")) + { + token = '*'; + } if (!strcmp(command,"NOTICE")) { snprintf(udp_msg,MAXBUF,"V %s %s",source,data); |