diff options
| author | 2013-09-18 10:27:06 +0200 | |
|---|---|---|
| committer | 2013-11-21 22:07:30 +0100 | |
| commit | b7d84270bce15507775c7ec216dc1d5ad8b02a53 (patch) | |
| tree | 793ac2c5ca6b3aebacf2129978660393ec00d5b6 /src/configreader.cpp | |
| parent | Allow multiple allowmasks in link blocks, #679 (diff) | |
| download | inspircd++-b7d84270bce15507775c7ec216dc1d5ad8b02a53.tar.gz inspircd++-b7d84270bce15507775c7ec216dc1d5ad8b02a53.tar.bz2 inspircd++-b7d84270bce15507775c7ec216dc1d5ad8b02a53.zip | |
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/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 0df69071b..7493d980c 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -521,7 +521,7 @@ void ServerConfig::Read() catch (CoreException& err) { valid = false; - errstr << err.GetReason(); + errstr << err.GetReason() << std::endl; } } |
