ip link: add VLAN support
[oweals/busybox.git] / networking / nc.c
index 8cb4b306e39d92605ef07627d31c037a99a734e4..126bec906488193736e52400aaab5a8702ffa38c 100644 (file)
@@ -40,7 +40,7 @@
 //config:        This option makes nc closely follow original nc-1.10.
 //config:        The code is about 2.5k bigger. It enables
 //config:        -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
-//config:        busybox-specific extensions: -f FILE and -ll.
+//config:        busybox-specific extensions: -f FILE.
 
 #if ENABLE_NC_110_COMPAT
 # include "nc_bloaty.c"
@@ -229,7 +229,7 @@ int nc_main(int argc, char **argv)
                xdup2(0, 1);
                /*xdup2(0, 2); - original nc 1.10 does this, we don't */
                IF_NC_EXTRA(BB_EXECVP(execparam[0], execparam);)
-               bb_perror_msg_and_die("can't execute '%s'", execparam[0]);
+               IF_NC_EXTRA(bb_perror_msg_and_die("can't execute '%s'", execparam[0]);)
        }
 
        /* Select loop copying stdin to cfd, and cfd to stdout */