summaryrefslogtreecommitdiff
path: root/networking/libiproute
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-03 23:17:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-03 23:17:40 +0000
commitfa3f806cd0730ddc53765f04a846087b99db847a (patch)
treec76e82b7f511a099cb1c107e13de57207926f89b /networking/libiproute
parent43f0a0bb3a178794ac9fa3f5010db680c5d1b018 (diff)
downloadbusybox-w32-1_7_3.tar.gz
busybox-w32-1_7_3.tar.bz2
busybox-w32-1_7_3.zip
apply accumulated post 1.7.2 patches; bump version to 1.7.31_7_3
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/iptunnel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c
index 2b1713556..6d3a74165 100644
--- a/networking/libiproute/iptunnel.c
+++ b/networking/libiproute/iptunnel.c
@@ -241,12 +241,12 @@ static void parse_args(int argc, char **argv, int cmd, struct ip_tunnel_parm *p)
241 } else if (key == ARG_remote) { 241 } else if (key == ARG_remote) {
242 NEXT_ARG(); 242 NEXT_ARG();
243 key = index_in_strings(keywords, *argv); 243 key = index_in_strings(keywords, *argv);
244 if (key == ARG_any) 244 if (key != ARG_any)
245 p->iph.daddr = get_addr32(*argv); 245 p->iph.daddr = get_addr32(*argv);
246 } else if (key == ARG_local) { 246 } else if (key == ARG_local) {
247 NEXT_ARG(); 247 NEXT_ARG();
248 key = index_in_strings(keywords, *argv); 248 key = index_in_strings(keywords, *argv);
249 if (key == ARG_any) 249 if (key != ARG_any)
250 p->iph.saddr = get_addr32(*argv); 250 p->iph.saddr = get_addr32(*argv);
251 } else if (key == ARG_dev) { 251 } else if (key == ARG_dev) {
252 NEXT_ARG(); 252 NEXT_ARG();