|
From: <sv...@va...> - 2008-08-25 12:10:07
|
Author: sewardj
Date: 2008-08-25 13:10:14 +0100 (Mon, 25 Aug 2008)
New Revision: 8547
Log:
Fix regression on none/tests/faultstatus caused by r8522.
Modified:
trunk/coregrind/m_debuginfo/debuginfo.c
Modified: trunk/coregrind/m_debuginfo/debuginfo.c
===================================================================
--- trunk/coregrind/m_debuginfo/debuginfo.c 2008-08-25 11:45:31 UTC (rev 8546)
+++ trunk/coregrind/m_debuginfo/debuginfo.c 2008-08-25 12:10:14 UTC (rev 8547)
@@ -545,7 +545,7 @@
if (statres.isError) {
DebugInfo fake_di;
Bool quiet = VG_(strstr)(filename, "/var/run/nscd/") != NULL;
- if (!quiet) {
+ if (!quiet && VG_(clo_verbosity) > 1) {
VG_(memset)(&fake_di, 0, sizeof(fake_di));
fake_di.filename = filename;
ML_(symerr)(&fake_di, True, "failed to stat64/stat this file");
|