svn commit: r274498 - stable/10/usr.sbin/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Fri Nov 14 10:05:54 UTC 2014
Author: trasz
Date: Fri Nov 14 10:05:53 2014
New Revision: 274498
URL: https://svnweb.freebsd.org/changeset/base/274498
Log:
MFC r273123:
Silence down a warning that doesn't provide any useful information unless
debug is enabled.
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/usr.sbin/autofs/automountd.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/autofs/automountd.c
==============================================================================
--- stable/10/usr.sbin/autofs/automountd.c Fri Nov 14 09:51:21 2014 (r274497)
+++ stable/10/usr.sbin/autofs/automountd.c Fri Nov 14 10:05:53 2014 (r274498)
@@ -366,7 +366,7 @@ wait_for_children(bool block)
log_warnx("child process %d terminated with signal %d",
pid, WTERMSIG(status));
} else if (WEXITSTATUS(status) != 0) {
- log_warnx("child process %d terminated with exit status %d",
+ log_debugx("child process %d terminated with exit status %d",
pid, WEXITSTATUS(status));
} else {
log_debugx("child process %d terminated gracefully", pid);
More information about the svn-src-all
mailing list