Skip to content

Commit

Permalink
fidex syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
keiichi committed Jul 7, 2005
1 parent 348a6f4 commit 7134f4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions freebsd5/etc/rc.d/network_ipv6_mobile
Expand Up @@ -127,10 +127,10 @@ network_ipv6_mobile_start()
fi

# do not autoconfigure addresses on ingress i/fs
if [ X${ipv6_mobile_ingress_interfaces} != X ]; then
if [ "X${ipv6_mobile_ingress_interfaces}" != 'X' ]; then
for iinterface in ${ipv6_mobile_ingress_interfaces}
do
ndp -i ${iinterface} -- -accept_rtadv
ndp -i ${iinterface} -- -accept_rtadv > /dev/null 2>&1
done
fi

Expand Down
6 changes: 3 additions & 3 deletions netbsd/etc/rc.d/mobileip6
@@ -1,5 +1,5 @@
#!/bin/sh
# $Id: mobileip6,v 1.11 2005/07/07 11:53:49 keiichi Exp $
# $Id: mobileip6,v 1.12 2005/07/07 12:16:15 keiichi Exp $

# REQUIRE: network
# PROVIDE: mobileip6
Expand Down Expand Up @@ -94,10 +94,10 @@ mobileip6_start()
fi

# do not autoconfigure addresses on ingress i/fs
if [ X${ipv6_mobile_ingress_interfaces} != X ]; then
if [ "X${ipv6_mobile_ingress_interfaces}" != 'X' ]; then
for iinterface in ${ipv6_mobile_ingress_interfaces}
do
ndp -i ${iinterface} -- -accept_rtadv
ndp -i ${iinterface} -- -accept_rtadv > /dev/null 2>&1
done
fi

Expand Down

0 comments on commit 7134f4c

Please sign in to comment.