From: Glenn L McGrath Date: Tue, 26 Nov 2002 02:23:41 +0000 (-0000) Subject: Fix simple syntax error X-Git-Tag: 1_00_pre1~414 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2801eb925d957361c78dbdcf539cf7c33f0741a9;p=oweals%2Fbusybox.git Fix simple syntax error --- diff --git a/networking/ifupdown.c b/networking/ifupdown.c index e4bfc3eb4..1387033ba 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);