diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 19:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 19:05:12 +0000 |
commit | 6c10657c4a4cb54ed65d797250b9a73b565c10d6 (patch) | |
tree | 1adfeaef74f1e10be116d8d3bb5d8b6a0908fbf7 /networking | |
parent | 5a96c3eab63c2e3349d8bc4be471b3a730fd109b (diff) | |
download | busybox-6c10657c4a4cb54ed65d797250b9a73b565c10d6.tar.gz |
style fixes. no code changes
Diffstat (limited to 'networking')
-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 ad909ff21..1190b6867 100644 --- a/networking/libiproute/iptunnel.c +++ b/networking/libiproute/iptunnel.c @@ -191,7 +191,7 @@ static void parse_args(char **argv, int cmd, struct ip_tunnel_parm *p) if (strchr(*argv, '.')) p->i_key = p->o_key = get_addr32(*argv); else { - if (get_unsigned(&uval, *argv, 0)<0) { + if (get_unsigned(&uval, *argv, 0) < 0) { bb_error_msg_and_die("invalid value of \"key\""); } p->i_key = p->o_key = htonl(uval); @@ -203,7 +203,7 @@ static void parse_args(char **argv, int cmd, struct ip_tunnel_parm *p) if (strchr(*argv, '.')) p->o_key = get_addr32(*argv); else { - if (get_unsigned(&uval, *argv, 0)<0) { + if (get_unsigned(&uval, *argv, 0) < 0) { bb_error_msg_and_die("invalid value of \"ikey\""); } p->i_key = htonl(uval); @@ -215,7 +215,7 @@ static void parse_args(char **argv, int cmd, struct ip_tunnel_parm *p) if (strchr(*argv, '.')) p->o_key = get_addr32(*argv); else { - if (get_unsigned(&uval, *argv, 0)<0) { + if (get_unsigned(&uval, *argv, 0) < 0) { bb_error_msg_and_die("invalid value of \"okey\""); } p->o_key = htonl(uval); |