summaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-07-30 18:01:38 +0100
committerPeter Powell <petpow@saberuk.com>2017-07-30 18:01:38 +0100
commitf29e1fa2b58796674f5d047456b38cc5b4de41d6 (patch)
tree381ba1efc6f19be25fffdd8d836cc005eacf5424 /src/configreader.cpp
parentff3b706b2506d7614bce5e54bc88657bd62ebd4d (diff)
Fix exceptions not having a line ending when appending to errmsg.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
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.