diff options
author | Glenn L McGrath | 2002-11-26 02:23:41 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-26 02:23:41 +0000 |
commit | 2801eb925d957361c78dbdcf539cf7c33f0741a9 (patch) | |
tree | 7ad88b2cdbe74696780e23b460053d25829b6909 /networking/ifupdown.c | |
parent | 12371f916b2fee0e3c1a0ab4d3e8623b21bf6f4a (diff) | |
download | busybox-2801eb925d957361c78dbdcf539cf7c33f0741a9.zip busybox-2801eb925d957361c78dbdcf539cf7c33f0741a9.tar.gz |
Fix simple syntax error
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index e4bfc3e..1387033 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -318,7 +318,7 @@ static int loopback_up6(interface_defn *ifd, execfn *exec) static int loopback_down6(interface_defn *ifd, execfn *exec) { - if (!execute("ifconfig %iface% del ::1", ifd, exec)) + if (!execute("ifconfig %iface% del ::1", ifd, exec)) { return(0); } return(1); |