Fix warnings to not append "No error: 0".
MFC after: 1 month Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
92e719523b
commit
3cb5cc327b
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user