diff options
| author | Alexander Barton <alex@barton.de> | 2012-11-04 13:58:25 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-11-10 21:26:25 +0100 |
| commit | 45b0bb5aff6157409ea88b344c34b7bf84dc8886 (patch) | |
| tree | 8a07254443c887b6dbdd648d8866702cb8e43e71 /contrib/Anope/0016-ngircd-support-SQUERY-command.patch | |
| parent | c7db2f8429c161835f6a9ed4523f45c23918892b (diff) | |
| download | ngircd-45b0bb5aff6157409ea88b344c34b7bf84dc8886.tar.gz ngircd-45b0bb5aff6157409ea88b344c34b7bf84dc8886.zip | |
Remove Anope "ngircd" protocol module patches
Starting with Anope 1.9.8, the ngIRCd protocol module is included in the Anope distribution, so there's no longer any need to support our own (but now heavily outdated!) patches. Therefore remove them.
Diffstat (limited to 'contrib/Anope/0016-ngircd-support-SQUERY-command.patch')
| -rw-r--r-- | contrib/Anope/0016-ngircd-support-SQUERY-command.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/contrib/Anope/0016-ngircd-support-SQUERY-command.patch b/contrib/Anope/0016-ngircd-support-SQUERY-command.patch deleted file mode 100644 index a3346a4a..00000000 --- a/contrib/Anope/0016-ngircd-support-SQUERY-command.patch +++ /dev/null @@ -1,35 +0,0 @@ -From a7c48fcf47af757cf1b4eeaa6bcc96f4ae1f7410 Mon Sep 17 00:00:00 2001 -From: Alexander Barton <alex@barton.de> -Date: Sat, 4 Feb 2012 11:13:36 +0100 -Subject: [PATCH 16/16] ngircd: support SQUERY command - -Thanks to DukePyrolator for explaining these changes to me. ---- - modules/protocol/ngircd.cpp | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp -index 0f87cbd..530686e 100644 ---- a/modules/protocol/ngircd.cpp -+++ b/modules/protocol/ngircd.cpp -@@ -487,7 +487,7 @@ bool event_376(const Anope::string &source, const std::vector<Anope::string> &pa - class ProtongIRCd : public Module - { - Message message_kick, message_pass, message_njoin, message_chaninfo, message_005, -- message_442, message_376, message_pong; -+ message_442, message_376, message_pong, message_squery; - - ngIRCdProto ircd_proto; - ngIRCdIRCdMessage ircd_message; -@@ -532,7 +532,7 @@ class ProtongIRCd : public Module - message_kick("KICK", event_kick), message_pass("PASS", event_pass), - message_njoin("NJOIN", event_njoin), message_chaninfo("CHANINFO", event_chaninfo), - message_005("005", event_005), message_442("442", event_442), message_376("376", event_376), -- message_pong("PONG", event_pong) -+ message_pong("PONG", event_pong), message_squery("SQUERY", ::OnPrivmsg) - { - this->SetAuthor("Anope"); - --- -1.7.8.3 - |