diff options
-rw-r--r-- | sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c index d21781ea4..ef4d9e04f 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -227,7 +227,7 @@ ssh_proxy_connect(const char *host, u_short port, const char *proxy_command) | |||
227 | /* Execute the proxy command. Note that we gave up any | 227 | /* Execute the proxy command. Note that we gave up any |
228 | extra privileges above. */ | 228 | extra privileges above. */ |
229 | signal(SIGPIPE, SIG_DFL); | 229 | signal(SIGPIPE, SIG_DFL); |
230 | execv(argv[0], argv); | 230 | execvp(argv[0], argv); |
231 | perror(argv[0]); | 231 | perror(argv[0]); |
232 | exit(1); | 232 | exit(1); |
233 | } | 233 | } |
@@ -1384,7 +1384,7 @@ ssh_local_cmd(const char *args) | |||
1384 | if (pid == 0) { | 1384 | if (pid == 0) { |
1385 | signal(SIGPIPE, SIG_DFL); | 1385 | signal(SIGPIPE, SIG_DFL); |
1386 | debug3("Executing %s -c \"%s\"", shell, args); | 1386 | debug3("Executing %s -c \"%s\"", shell, args); |
1387 | execl(shell, shell, "-c", args, (char *)NULL); | 1387 | execlp(shell, shell, "-c", args, (char *)NULL); |
1388 | error("Couldn't execute %s -c \"%s\": %s", | 1388 | error("Couldn't execute %s -c \"%s\": %s", |
1389 | shell, args, strerror(errno)); | 1389 | shell, args, strerror(errno)); |
1390 | _exit(1); | 1390 | _exit(1); |