complete _PATH_BSHELL merge

This commit is contained in:
Kevin Steves 2001-01-07 11:45:22 +00:00
parent d26dcf3371
commit fcd5d60a95
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ ssh_proxy_connect(const char *host, u_short port, uid_t original_real_uid,
/* Execute the proxy command. Note that we gave up any
extra privileges above. */
execv(_PATH_BSHELL, argv);
perror(_PATH_BSHELL);
execv(argv[0], argv);
perror(argv[0]);
exit(1);
}
/* Parent. */