svn commit: r288984 - head/sbin/sysctl

Baptiste Daroussin bapt at FreeBSD.org
Wed Oct 7 09:28:55 UTC 2015


Author: bapt
Date: Wed Oct  7 09:28:54 2015
New Revision: 288984
URL: https://svnweb.freebsd.org/changeset/base/288984

Log:
  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'
  
  MFC after:	1 week
  Sponsored by:	Gandi.net

Modified:
  head/sbin/sysctl/sysctl.c

Modified: head/sbin/sysctl/sysctl.c
==============================================================================
--- head/sbin/sysctl/sysctl.c	Wed Oct  7 09:12:49 2015	(r288983)
+++ head/sbin/sysctl/sysctl.c	Wed Oct  7 09:28:54 2015	(r288984)
@@ -276,7 +276,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-head mailing list