[Box Backup-dev] COMMIT r332 - box/chris/win32/timestamp-fixes/lib/win32

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Sun, 22 Jan 2006 00:33:28 +0000 (GMT)


Author: chris
Date: 2006-01-22 00:33:25 +0000 (Sun, 22 Jan 2006)
New Revision: 332

Modified:
   box/chris/win32/timestamp-fixes/lib/win32/emu.cpp
Log:
* emu.cpp
- Don't log failure to open a file because it doesn't exist - this may not
  be an error, for example when "bbackupquery get" checks that the file
  does not exist before overwriting it.


Modified: box/chris/win32/timestamp-fixes/lib/win32/emu.cpp
===================================================================
--- box/chris/win32/timestamp-fixes/lib/win32/emu.cpp	2006-01-20 22:05:49 UTC (rev 331)
+++ box/chris/win32/timestamp-fixes/lib/win32/emu.cpp	2006-01-22 00:33:25 UTC (rev 332)
@@ -500,8 +500,6 @@
 
 		if (err == ERROR_FILE_NOT_FOUND)
 		{
-			::syslog(LOG_WARNING, 
-				"Failed to open '%s': file not found", pName);
 			errno = ENOENT;
 		}
 		else