diff options
| author | 2013-09-18 10:27:06 +0200 | |
|---|---|---|
| committer | 2013-11-21 22:07:30 +0100 | |
| commit | b7d84270bce15507775c7ec216dc1d5ad8b02a53 (patch) | |
| tree | 793ac2c5ca6b3aebacf2129978660393ec00d5b6 /src/inspircd.cpp | |
| parent | Allow multiple allowmasks in link blocks, #679 (diff) | |
Fix a few issues
- Rehash notices
- Modes in CAPAB
- GetTargetAndAction() not being static in m_callerid
- Loading custom configuration files using --config. (@SaberUK)
- ServerConfig::Read not using std::endl. (@SaberUK)
- Out of date comments in opers.conf.example, issue #624
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 8336a4847..368ca6e8b 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -335,7 +335,7 @@ InspIRCd::InspIRCd(int argc, char** argv) : { case 'c': /* Config filename was set */ - ConfigFileName = optarg; + ConfigFileName = ServerInstance->Config->Paths.PrependConfig(optarg); break; case 0: /* getopt_long_only() set an int variable, just keep going */ |
