diff options
-rw-r--r-- | sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c index 17fbe39b0..cd467fde4 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -231,7 +231,7 @@ ssh_proxy_connect(const char *host, u_short port, const char *proxy_command) | |||
231 | /* Execute the proxy command. Note that we gave up any | 231 | /* Execute the proxy command. Note that we gave up any |
232 | extra privileges above. */ | 232 | extra privileges above. */ |
233 | signal(SIGPIPE, SIG_DFL); | 233 | signal(SIGPIPE, SIG_DFL); |
234 | execv(argv[0], argv); | 234 | execvp(argv[0], argv); |
235 | perror(argv[0]); | 235 | perror(argv[0]); |
236 | exit(1); | 236 | exit(1); |
237 | } | 237 | } |
@@ -1471,7 +1471,7 @@ ssh_local_cmd(const char *args) | |||
1471 | if (pid == 0) { | 1471 | if (pid == 0) { |
1472 | signal(SIGPIPE, SIG_DFL); | 1472 | signal(SIGPIPE, SIG_DFL); |
1473 | debug3("Executing %s -c \"%s\"", shell, args); | 1473 | debug3("Executing %s -c \"%s\"", shell, args); |
1474 | execl(shell, shell, "-c", args, (char *)NULL); | 1474 | execlp(shell, shell, "-c", args, (char *)NULL); |
1475 | error("Couldn't execute %s -c \"%s\": %s", | 1475 | error("Couldn't execute %s -c \"%s\": %s", |
1476 | shell, args, strerror(errno)); | 1476 | shell, args, strerror(errno)); |
1477 | _exit(1); | 1477 | _exit(1); |