[git commit] nc: fix build failure ("subscripted value is neither array nor pointer")

Denys Vlasenko vda.linux at googlemail.com
Sun Mar 17 21:59:51 UTC 2013


commit: http://git.busybox.net/busybox/commit/?id=c56d12505bc372969a3ec15c74f79ebf5cc09c86
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/nc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/networking/nc.c b/networking/nc.c
index 5f4cb89..126bec9 100644
--- a/networking/nc.c
+++ b/networking/nc.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 */


More information about the busybox-cvs mailing list