[Box Backup-commit] COMMIT r1822 - box/chris/merge/lib/server
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Fri, 07 Sep 2007 22:08:30 +0100
Author: chris
Date: 2007-09-07 22:08:30 +0100 (Fri, 07 Sep 2007)
New Revision: 1822
Modified:
box/chris/merge/lib/server/LocalProcessStream.cpp
Log:
Win32 compile fix (logging framework abuse). (merges [1810])
Modified: box/chris/merge/lib/server/LocalProcessStream.cpp
===================================================================
--- box/chris/merge/lib/server/LocalProcessStream.cpp 2007-09-07 20:53:16 UTC (rev 1821)
+++ box/chris/merge/lib/server/LocalProcessStream.cpp 2007-09-07 21:08:30 UTC (rev 1822)
@@ -120,7 +120,7 @@
HANDLE writeInChild, readFromChild;
if(!CreatePipe(&readFromChild, &writeInChild, &secAttr, 0))
{
- BOX_ERROR("Failed to CreatePipe for child process: "
+ BOX_ERROR("Failed to CreatePipe for child process: " <<
GetErrorMessage(GetLastError()));
THROW_EXCEPTION(ServerException, SocketPairFailed)
}