diff options
Diffstat (limited to 'networking/libiproute/iptunnel.c')
-rw-r--r-- | networking/libiproute/iptunnel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c index 836709c7e..67afd1bfd 100644 --- a/networking/libiproute/iptunnel.c +++ b/networking/libiproute/iptunnel.c | |||
@@ -222,7 +222,7 @@ static void parse_args(char **argv, int cmd, struct ip_tunnel_parm *p) | |||
222 | } | 222 | } |
223 | p->iph.protocol = IPPROTO_IPV6; | 223 | p->iph.protocol = IPPROTO_IPV6; |
224 | } else { | 224 | } else { |
225 | bb_error_msg_and_die("%s tunnel mode", "cannot guess"); | 225 | bb_error_msg_and_die("%s tunnel mode", "can't guess"); |
226 | } | 226 | } |
227 | } else if (key == ARG_key) { | 227 | } else if (key == ARG_key) { |
228 | unsigned uval; | 228 | unsigned uval; |
@@ -377,7 +377,7 @@ static int do_add(int cmd, char **argv) | |||
377 | case IPPROTO_IPV6: | 377 | case IPPROTO_IPV6: |
378 | return do_add_ioctl(cmd, "sit0", &p); | 378 | return do_add_ioctl(cmd, "sit0", &p); |
379 | default: | 379 | default: |
380 | bb_error_msg_and_die("cannot determine tunnel mode (ipip, gre or sit)"); | 380 | bb_error_msg_and_die("can't determine tunnel mode (ipip, gre or sit)"); |
381 | } | 381 | } |
382 | } | 382 | } |
383 | 383 | ||
@@ -499,7 +499,7 @@ static void do_tunnels_list(struct ip_tunnel_parm *p) | |||
499 | continue; | 499 | continue; |
500 | type = do_ioctl_get_iftype(name); | 500 | type = do_ioctl_get_iftype(name); |
501 | if (type == -1) { | 501 | if (type == -1) { |
502 | bb_error_msg("cannot get type of [%s]", name); | 502 | bb_error_msg("can't get type of [%s]", name); |
503 | continue; | 503 | continue; |
504 | } | 504 | } |
505 | if (type != ARPHRD_TUNNEL && type != ARPHRD_IPGRE && type != ARPHRD_SIT) | 505 | if (type != ARPHRD_TUNNEL && type != ARPHRD_IPGRE && type != ARPHRD_SIT) |