diff options
author | Adam <Adam@anope.org> | 2010-08-16 23:54:27 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-08-16 23:54:27 -0400 |
commit | a2be8c402ffa3a801297bfbdb8303746f5856fcd (patch) | |
tree | 4ccef509b56ff1c9d94b88c1b3df44645f6e1832 | |
parent | a29845cc56a0fb33c2e8139c3133d4f59eddfdde (diff) |
Kill users using our nicks when on InspIRCd 1.2
Apparently InspIRCd does not value ULines
-rw-r--r-- | src/protocol/inspircd12.c | 1 | ||||
-rw-r--r-- | version.log | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/protocol/inspircd12.c b/src/protocol/inspircd12.c index 5eb9cc5ab..c1b08711a 100644 --- a/src/protocol/inspircd12.c +++ b/src/protocol/inspircd12.c @@ -655,6 +655,7 @@ void inspircd_cmd_376(char *source) void inspircd_cmd_nick(char *nick, char *name, char *modes) { char *nicknumbuf = ts6_uid_retrieve(); + send_cmd(TS6SID, "KILL %s :Services enforced kill", nick); send_cmd(TS6SID, "UID %s %ld %s %s %s %s 0.0.0.0 %ld +%s :%s", nicknumbuf, (long int) time(NULL), nick, ServiceHost, ServiceHost, ServiceUser, (long int) time(NULL), modes, name); diff --git a/version.log b/version.log index 0d1bea7dd..6b8c946e6 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="4" VERSION_EXTRA="-git" -VERSION_BUILD="3026" +VERSION_BUILD="3027" # $Log$ # Changes since the 1.8.4 Release +#Revision 3027 - Kill users using our nicks when on InspIRCd 1.2 #Revision 3026 - Updated german language file #Revision 3025 - Added in mail forking for operating systems that support it #Revision 3023 - Fixed minor wording error, and bumped version log from last commit |