svn commit: r289292 - stable/10/sbin/sysctl

Baptiste Daroussin bapt at FreeBSD.org
Wed Oct 14 06:31:51 UTC 2015


Author: bapt
Date: Wed Oct 14 06:31:49 2015
New Revision: 289292
URL: https://svnweb.freebsd.org/changeset/base/289292

Log:
  MFC: 288984
  
  Only print the errno string in case sysctl(3) does not file with ENOENT
  This reduces the noise in error reporing from sysctl(8):
  
  Before:
  $ sysctl bla=something
  sysctl: unknown oid 'bla': No such file or directory
  
  After:
  $ sysctl bla=something
  sysctl: unknown oid 'bla'
  
  Sponsored by:	Gandi.net

Modified:
  stable/10/sbin/sysctl/sysctl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sbin/sysctl/sysctl.c
==============================================================================
--- stable/10/sbin/sysctl/sysctl.c	Wed Oct 14 06:26:55 2015	(r289291)
+++ stable/10/sbin/sysctl/sysctl.c	Wed Oct 14 06:31:49 2015	(r289292)
@@ -247,7 +247,11 @@ parse(const char *string, int lineno)
 		if (qflag)
 			return (1);
 		else {
-			warn("unknown oid '%s'%s", bufp, line);
+			if (errno == ENOENT) {
+				warnx("unknown oid '%s'%s", bufp, line);
+			} else {
+				warn("unknown oid '%s'%s", bufp, line);
+			}
 			return (1);
 		}
 	}


More information about the svn-src-stable-10 mailing list