summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-02-18 12:57:31 -0500
committerAdam <Adam@anope.org>2014-02-18 12:57:31 -0500
commit928e2e1b7ccce8e05f7b15b2990490ee495e3c46 (patch)
tree026b3c8c5b5a95c2b0280d50401a847535a5ab71
parent5a140e4898d174e78fa513245edd9b857d6bf711 (diff)
Fix loading noexpire channels in db_old
-rw-r--r--modules/database/db_old.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp
index ddc488084..ebf29dea0 100644
--- a/modules/database/db_old.cpp
+++ b/modules/database/db_old.cpp
@@ -783,7 +783,7 @@ static void LoadChannels()
if (tmpu32 & OLD_CI_SECURE)
ci->Extend<bool>("CS_SECURE");
if (tmpu32 & OLD_CI_NO_EXPIRE)
- ci->Extend<bool>("CI_NO_EXPIRE");
+ ci->Extend<bool>("CS_NO_EXPIRE");
if (tmpu32 & OLD_CI_MEMO_HARDMAX)
ci->Extend<bool>("MEMO_HARDMAX");
if (tmpu32 & OLD_CI_SECUREFOUNDER)