diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:27:40 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:27:40 +0200 |
commit | 467b276d9d0407ec412262525c43c28d47fdae2f (patch) | |
tree | aaaa348fa1c2ea635b9e3b3ae29d9ef57d5e0dae /include | |
parent | caa0c27a5a485151a0de21e700680c1e46ab85b4 (diff) |
Change allocation of InspIRCd::BanCache to be physically part of the object containing it
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 60c8f761d..e575cd8b0 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -365,7 +365,7 @@ class CoreExport InspIRCd /** BanCacheManager is used to speed up checking of restrictions on connection * to the IRCd. */ - BanCacheManager *BanCache; + BanCacheManager BanCache; /** Stats class, holds miscellaneous stats counters */ |