From f29e1fa2b58796674f5d047456b38cc5b4de41d6 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sun, 30 Jul 2017 18:01:38 +0100 Subject: Fix exceptions not having a line ending when appending to errmsg. --- src/configreader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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. -- cgit v1.2.3