Fix warnings to not append "No error: 0".

MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
trasz 2013-11-26 19:14:18 +00:00
parent 92e719523b
commit 3cb5cc327b

View File

@ -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);
}