Fix simple syntax error
authorGlenn L McGrath <bug1@ihug.co.nz>
Tue, 26 Nov 2002 02:23:41 +0000 (02:23 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Tue, 26 Nov 2002 02:23:41 +0000 (02:23 -0000)
networking/ifupdown.c

index e4bfc3eb4faa48d4fafe9adc837fd99481c34aa0..1387033ba968aaf54170b7abcfe20fcaf04de594 100644 (file)
@@ -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);