diff options
| author | 2006-08-11 01:35:01 +0000 | |
|---|---|---|
| committer | 2006-08-11 01:35:01 +0000 | |
| commit | 12737ab4ad61a0d8a908c8a21594c7012e21eb3c (patch) | |
| tree | bf819b3a528227d3ddf929e25e8b74d1db8ef1c7 /src/modules/m_ident.cpp | |
| parent | And fix a bug (diff) | |
| download | inspircd++-12737ab4ad61a0d8a908c8a21594c7012e21eb3c.tar.gz inspircd++-12737ab4ad61a0d8a908c8a21594c7012e21eb3c.tar.bz2 inspircd++-12737ab4ad61a0d8a908c8a21594c7012e21eb3c.zip | |
ConfigReader and FileReader now take InspIRCd* to their constructors
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4865 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_ident.cpp')
| -rw-r--r-- | src/modules/m_ident.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index 88229c6c1..47266469d 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -181,7 +181,7 @@ class ModuleIdent : public Module public: void ReadSettings() { - Conf = new ConfigReader; + Conf = new ConfigReader(ServerInstance); IdentTimeout = Conf->ReadInteger("ident","timeout",0,true); if (!IdentTimeout) IdentTimeout = 1; |
