summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--src/protocol/inspircd11.c4
-rw-r--r--version.log6
3 files changed, 8 insertions, 3 deletions
diff --git a/Changes b/Changes
index e0e647506..da75eb838 100644
--- a/Changes
+++ b/Changes
@@ -5,6 +5,7 @@ Anope Version S V N
01/05 F Re-idenficiation after netsplit on InspIRCd. [#817]
01/05 F Founder channelmode (+q) not correctly parsed in FJOIN. [ #00]
01/06 F Updated documentation where needed. [ #00]
+01/06 F InspIRCD +q and +a prefixes were swapped. [ #00]
Provided by Trystan <trystan@nomadirc.net> - 2008
01/04 F Detection of Windows Vista and Windows Server 2008. [#815]
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c
index ec3b1a835..e55eaeb56 100644
--- a/src/protocol/inspircd11.c
+++ b/src/protocol/inspircd11.c
@@ -196,7 +196,7 @@ char myCsmodes[128] = {
0,
0, 0, 0,
'h', /* (37) % Channel halfops */
- 'q',
+ 'a',
0, 0, 0, 0,
'v', 0, 0, 0, 0,
@@ -206,7 +206,7 @@ char myCsmodes[128] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'q', 0
};
CMMode myCmmodes[128] = {
diff --git a/version.log b/version.log
index c1a80f4df..731c2197b 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="20"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1335"
+VERSION_BUILD="1336"
# $Log$
#
+# BUILD : 1.7.20 (1336)
+# BUGS :
+# NOTES : Fixed swapped prefixes for +a and +q on inspircd11
+#
# BUILD : 1.7.20 (1335)
# BUGS :
# NOTES : Updated documentations as by Jobes patch and did some readability work on cs_enforce