diff options
Diffstat (limited to 'networking/libiproute/iproute.c')
-rw-r--r-- | networking/libiproute/iproute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index 7031bed34..67eb90b84 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c | |||
@@ -499,7 +499,7 @@ static void iproute_flush_cache(void) | |||
499 | } | 499 | } |
500 | 500 | ||
501 | if (write(flush_fd, "-1", 2) < 2) { | 501 | if (write(flush_fd, "-1", 2) < 2) { |
502 | bb_perror_msg("cannot flush routing cache"); | 502 | bb_perror_msg("can't flush routing cache"); |
503 | return; | 503 | return; |
504 | } | 504 | } |
505 | close(flush_fd); | 505 | close(flush_fd); |
@@ -681,7 +681,7 @@ static int iproute_list_or_flush(char **argv, int flush) | |||
681 | if (filter.tb != -1) { | 681 | if (filter.tb != -1) { |
682 | xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE); | 682 | xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE); |
683 | } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) { | 683 | } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) { |
684 | bb_perror_msg_and_die("cannot send dump request"); | 684 | bb_perror_msg_and_die("can't send dump request"); |
685 | } | 685 | } |
686 | xrtnl_dump_filter(&rth, print_route, NULL); | 686 | xrtnl_dump_filter(&rth, print_route, NULL); |
687 | 687 | ||