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/0005-ngircd-always-prefix-modes-in-CHANINFO-with.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/0005-ngircd-always-prefix-modes-in-CHANINFO-with.patch')
| -rw-r--r-- | contrib/Anope/0005-ngircd-always-prefix-modes-in-CHANINFO-with.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/Anope/0005-ngircd-always-prefix-modes-in-CHANINFO-with.patch b/contrib/Anope/0005-ngircd-always-prefix-modes-in-CHANINFO-with.patch deleted file mode 100644 index 27b71638..00000000 --- a/contrib/Anope/0005-ngircd-always-prefix-modes-in-CHANINFO-with.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 0d83f8f9ca0de651d664eca6f467f36df0417f7d Mon Sep 17 00:00:00 2001 -From: Alexander Barton <alex@barton.de> -Date: Mon, 22 Aug 2011 14:59:49 +0200 -Subject: [PATCH 05/16] ngircd: always prefix modes in CHANINFO with "+" - ---- - modules/protocol/ngircd.cpp | 6 ++---- - 1 files changed, 2 insertions(+), 4 deletions(-) - -diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp -index 89aecfd..3e5beb3 100644 ---- a/modules/protocol/ngircd.cpp -+++ b/modules/protocol/ngircd.cpp -@@ -139,10 +139,8 @@ Log(LOG_DEBUG) << "SendModeInternal 2"; - - void SendChannel(Channel *c) - { -- Anope::string mlock_modes = get_mlock_modes(c->ci, true); -- if (mlock_modes.empty()) -- mlock_modes = "+"; -- send_cmd(Config->ServerName, "CHANINFO %s %s", c->name.c_str(), mlock_modes.c_str()); -+ Anope::string modes = c->GetModes(true, true); -+ send_cmd(Config->ServerName, "CHANINFO %s +%s", c->name.c_str(), modes.c_str()); - } - void SendTopic(BotInfo *bi, Channel *c) - { --- -1.7.8.3 - |