about summary refs log tree commit diff
path: root/contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2012-02-04 12:55:41 +0100
committerAlexander Barton <alex@barton.de>2012-02-04 12:55:41 +0100
commit89d99e2ff97e5217e80190765d3e1e9bb59239d6 (patch)
tree3c83cd0cfef6bd4253943ba24bd4bce7c54d51ad /contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch
parentc16133c5ee72256ef5b8fa586e72e5e3598e75bb (diff)
downloadngircd-89d99e2ff97e5217e80190765d3e1e9bb59239d6.tar.gz
ngircd-89d99e2ff97e5217e80190765d3e1e9bb59239d6.zip
Update preliminary ngIRCd protocol module for Anope 1.9.6
Diffstat (limited to 'contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch')
-rw-r--r--contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch b/contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch
new file mode 100644
index 00000000..7a25c9a9
--- /dev/null
+++ b/contrib/Anope/0015-ngircd-ngIRCd-supports-channel-mode-e-now.patch
@@ -0,0 +1,27 @@
+From 3a61b190db79848d4519296432ebb2ab714c42b7 Mon Sep 17 00:00:00 2001
+From: Alexander Barton <alex@barton.de>
+Date: Sun, 22 Jan 2012 19:06:34 +0100
+Subject: [PATCH 15/16] ngircd: ngIRCd supports channel mode 'e' now
+
+---
+ modules/protocol/ngircd.cpp |    3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp
+index 3bc3812..0f87cbd 100644
+--- a/modules/protocol/ngircd.cpp
++++ b/modules/protocol/ngircd.cpp
+@@ -504,8 +504,9 @@ class ProtongIRCd : public Module
+ 		ModeManager::AddUserMode(new UserMode(UMODE_WALLOPS, 'w'));
+ 		ModeManager::AddUserMode(new UserMode(UMODE_CLOAK, 'x'));
+ 
+-		/* Add modes for ban and invite lists */
++		/* Add modes for ban, exception, and invite lists */
+ 		ModeManager::AddChannelMode(new ChannelModeList(CMODE_BAN, 'b'));
++		ModeManager::AddChannelMode(new ChannelModeList(CMODE_EXCEPT, 'e'));
+ 		ModeManager::AddChannelMode(new ChannelModeList(CMODE_INVITEOVERRIDE, 'I'));
+ 
+ 		/* Add channel user modes */
+-- 
+1.7.8.3
+