[Initng-svn] r4365 - initng/trunk/src

svn at initng.thinktux.net svn at initng.thinktux.net
Mon Jun 5 12:29:41 CEST 2006


Author: jimmy
Date: Mon Jun  5 12:29:40 2006
New Revision: 4365

Modified:
   initng/trunk/src/initng_fd.c

Log:
Dont complain verbose about closen fds.


Modified: initng/trunk/src/initng_fd.c
==============================================================================
--- initng/trunk/src/initng_fd.c	(original)
+++ initng/trunk/src/initng_fd.c	Mon Jun  5 12:29:40 2006
@@ -326,7 +326,7 @@
 		/* This is a expensive test, but better safe then sorry */
 		if(!STILL_OPEN(currentC->c.fdh->fds))
 		{
-			W_("%i is not open anymore.\n", currentC->c.fdh->fds);
+			D_("%i is not open anymore.\n", currentC->c.fdh->fds);
 			currentC->c.fdh->fds=-1;
 			continue;
 		}
@@ -358,7 +358,7 @@
 					/* expensive test to make sure the pipe is open, before adding */
 					if(!STILL_OPEN(current_pipe->pipe[0]))
 					{
-						W_("%i is not open anymore.\n", current_pipe->pipe[0]);
+						D_("%i is not open anymore.\n", current_pipe->pipe[0]);
 						current_pipe->pipe[0]=-1;
 						continue;
 					}
@@ -374,7 +374,7 @@
 					/* expensive test to make sure the pipe is open, before adding */
 					if(!STILL_OPEN(current_pipe->pipe[1]))
 					{
-						W_("%i is not open anymore.\n", current_pipe->pipe[1]);
+						D_("%i is not open anymore.\n", current_pipe->pipe[1]);
 						current_pipe->pipe[1]=-1;
 						continue;
 					}
@@ -390,7 +390,7 @@
 					/* expensive test to make sure the pipe is open, before adding */
 					if(!STILL_OPEN(current_pipe->pipe[1]))
 					{
-						W_("%i is not open anymore.\n", current_pipe->pipe[1]);
+						D_("%i is not open anymore.\n", current_pipe->pipe[1]);
 						current_pipe->pipe[1]=-1;
 						continue;
 					}


More information about the Initng-svn mailing list