route(8): correctly return exit status when "-q" flag is used.
Previously, route returned 1 in case of error properly signalling failure but "route -q" it returned 0 for same case. Fix it. PR: 186333 MFC after: 1 month
This commit is contained in:
parent
5310c19174
commit
2814116849
@ -1050,10 +1050,13 @@ newroute(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fibnum = 0;
|
fibnum = 0;
|
||||||
TAILQ_FOREACH(fl, &fibl_head, fl_next) {
|
TAILQ_FOREACH(fl, &fibl_head, fl_next) {
|
||||||
if (fl->fl_error != 0) {
|
if (fl->fl_error != 0) {
|
||||||
|
error = 1;
|
||||||
|
if (!qflag) {
|
||||||
printf("%s %s %s", cmd, (nrflags & F_ISHOST)
|
printf("%s %s %s", cmd, (nrflags & F_ISHOST)
|
||||||
? "host" : "net", dest);
|
? "host" : "net", dest);
|
||||||
if (*gateway)
|
if (*gateway)
|
||||||
@ -1087,7 +1090,6 @@ newroute(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
printf(": %s\n", errmsg);
|
printf(": %s\n", errmsg);
|
||||||
error = 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user