*: use fopen_or_warn in few more places
This commit is contained in:
@@ -560,9 +560,8 @@ static int if_readlist_proc(char *target)
|
||||
if (!target)
|
||||
proc_read = 1;
|
||||
|
||||
fh = fopen(_PATH_PROCNET_DEV, "r");
|
||||
fh = fopen_or_warn(_PATH_PROCNET_DEV, "r");
|
||||
if (!fh) {
|
||||
bb_perror_msg("warning: cannot open %s, limiting output", _PATH_PROCNET_DEV);
|
||||
return if_readconf();
|
||||
}
|
||||
fgets(buf, sizeof buf, fh); /* eat line */
|
||||
|
@@ -91,7 +91,6 @@ static int print_route(struct sockaddr_nl *who ATTRIBUTE_UNUSED,
|
||||
int host_len = -1;
|
||||
SPRINT_BUF(b1);
|
||||
|
||||
|
||||
if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
|
||||
fprintf(stderr, "Not a route: %08x %08x %08x\n",
|
||||
n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
|
||||
|
Reference in New Issue
Block a user