svn commit: r258659 - head/sbin/sysctl

Edward Tomasz Napierala trasz at FreeBSD.org
Tue Nov 26 19:14:19 UTC 2013


Author: trasz
Date: Tue Nov 26 19:14:18 2013
New Revision: 258659
URL: http://svnweb.freebsd.org/changeset/base/258659

Log:
  Fix warnings to not append "No error: 0".
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sbin/sysctl/sysctl.c

Modified: head/sbin/sysctl/sysctl.c
==============================================================================
--- head/sbin/sysctl/sysctl.c	Tue Nov 26 17:11:43 2013	(r258658)
+++ head/sbin/sysctl/sysctl.c	Tue Nov 26 19:14:18 2013	(r258659)
@@ -201,7 +201,7 @@ parse(const char *string, int lineno)
 
 	cp = buf;
 	if (snprintf(buf, BUFSIZ, "%s", string) >= BUFSIZ) {
-		warn("oid too long: '%s'%s", string, line);
+		warnx("oid too long: '%s'%s", string, line);
 		return (1);
 	}
 	bufp = strsep(&cp, "=:");
@@ -260,7 +260,7 @@ parse(const char *string, int lineno)
 		}
 	} else {
 		if ((kind & CTLTYPE) == CTLTYPE_NODE) {
-			warn("oid '%s' isn't a leaf node%s", bufp, line);
+			warnx("oid '%s' isn't a leaf node%s", bufp, line);
 			return (1);
 		}
 


More information about the svn-src-all mailing list