[netfilter-cvslog] r3535 - trunk/nfsim/core

rusty at netfilter.org rusty at netfilter.org
Sat Jan 1 02:31:52 CET 2005


Author: rusty at netfilter.org
Date: 2005-01-01 02:31:51 +0100 (Sat, 01 Jan 2005)
New Revision: 3535

Modified:
   trunk/nfsim/core/failtest.c
Log:
It's amazing how something exactly wrong can stay around so long.  We were suppressing output at exactly the wrong time.  Still, it worked well enough that I didn't notice until recently.


Modified: trunk/nfsim/core/failtest.c
===================================================================
--- trunk/nfsim/core/failtest.c	2004-12-31 12:41:19 UTC (rev 3534)
+++ trunk/nfsim/core/failtest.c	2005-01-01 01:31:51 UTC (rev 3535)
@@ -276,7 +276,7 @@
 		return false;
 
 	/* Report unless child already reported it. */
-	if (!WIFEXITED(status) || WEXITSTATUS(status) == EXIT_SILENT) {
+	if (!WIFEXITED(status) || WEXITSTATUS(status) != EXIT_SILENT) {
 		/* Reproduce child's path */
 		dec->failed = true;
 		nfsim_log(LOG_ALWAYS, "Child %s %i on failure path: %s",




More information about the netfilter-cvslog mailing list