From f99fc84915e4bcd2750b7fadfb24f858ccc7e5ef Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 8 Nov 2006 18:33:18 +0000 Subject: Imbue classic 'C' locale for the output of message parts and protocol commands. --- src/platforms/posix/posixChildProcess.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/platforms/posix/posixChildProcess.cpp') diff --git a/src/platforms/posix/posixChildProcess.cpp b/src/platforms/posix/posixChildProcess.cpp index bbeaa497..aded6a6e 100644 --- a/src/platforms/posix/posixChildProcess.cpp +++ b/src/platforms/posix/posixChildProcess.cpp @@ -376,6 +376,8 @@ void posixChildProcess::waitForFinish() else { std::ostringstream oss; + oss.imbue(std::locale::classic()); + oss << "Process exited with status " << WEXITSTATUS(wstat); throw exceptions::system_error(oss.str()); -- cgit v1.2.3