summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-07 18:31:54 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-07 18:31:54 +0000
commit6c389362435138c1523e4aedb53938100f6b4c47 (patch)
tree54450febbc1feb4af837c6c9b8f912d521efe0ad /include/inspircd.h
parent3c2c0b7733c0d752bdab4d42a33a3a777266b90a (diff)
national_case_sensitive_map must be static, thanks to the match stuff being static (this is a bit ugly, but necessary for now).
Default to national charset map instead of rfc map, as modules may change the pointer. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10857 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 59e840b7b..19674c118 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -408,7 +408,7 @@ class CoreExport InspIRCd : public classbase
* This is provided as a pointer so that modules can change it to their custom mapping tables,
* e.g. for national character support.
*/
- unsigned const char *national_case_sensitive_map;
+ static unsigned const char *national_case_sensitive_map;
/** Returns the next available UID for this server.
*/