aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
Diffstat (limited to 'networking')
-rw-r--r--networking/ifupdown.c2
-rw-r--r--networking/nc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index ce3b9bab7..ccebecd95 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1004,7 +1004,7 @@ static int popen2(FILE **in, FILE **out, char *command, ...)
1004 close(infd[1]); 1004 close(infd[1]);
1005 close(outfd[0]); 1005 close(outfd[0]);
1006 close(outfd[1]); 1006 close(outfd[1]);
1007 execvp(command, argv); 1007 BB_EXECVP(command, argv);
1008 exit(127); 1008 exit(127);
1009 default: /* parent */ 1009 default: /* parent */
1010 *in = fdopen(infd[1], "w"); 1010 *in = fdopen(infd[1], "w");
diff --git a/networking/nc.c b/networking/nc.c
index c1e881162..1bdecaf5e 100644
--- a/networking/nc.c
+++ b/networking/nc.c
@@ -149,7 +149,7 @@ int nc_main(int argc, char **argv)
149 } 149 }
150 dup2(0, 1); 150 dup2(0, 1);
151 dup2(0, 2); 151 dup2(0, 2);
152 USE_NC_EXTRA(execvp(execparam[0], execparam);) 152 USE_NC_EXTRA(BB_EXECVP(execparam[0], execparam);)
153 /* Don't print stuff or it will go over the wire.... */ 153 /* Don't print stuff or it will go over the wire.... */
154 _exit(127); 154 _exit(127);
155 } 155 }