diff options
| -rw-r--r-- | source3/smbd/server.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 10e8b62430..f4436bfad7 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -294,7 +294,8 @@ static void remove_child_pid(pid_t pid, bool unclean_shutdown)  		}  	} -	DEBUG(0, ("Could not find child %d -- ignoring\n", (int)pid)); +	/* not all forked child processes are added to the children list */ +	DEBUG(1, ("Could not find child %d -- ignoring\n", (int)pid));  }  /****************************************************************************  | 
