diff options
| author | 2017-07-30 18:01:38 +0100 | |
|---|---|---|
| committer | 2017-07-30 18:01:38 +0100 | |
| commit | f29e1fa2b58796674f5d047456b38cc5b4de41d6 (patch) | |
| tree | 381ba1efc6f19be25fffdd8d836cc005eacf5424 /src/configreader.cpp | |
| parent | Merge pull request #1271 from SaberUK/master+exemption (diff) | |
Fix exceptions not having a line ending when appending to errmsg.
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 8263b8737..8aa19d6d6 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -568,7 +568,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) } catch (CoreException &ce) { - errstr << ce.GetReason(); + errstr << ce.GetReason() << std::endl; } // Check errors before dealing with failed binds, since continuing on failed bind is wanted in some circumstances. |
