2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

now uses USE_CWD

This commit is contained in:
Todd C. Miller
1993-09-04 19:15:46 +00:00
parent 35ea443962
commit d555cdb52e

View File

@@ -285,9 +285,9 @@ if ( ! fork () ) {
/* child parent */
(void) close(1);
execve ( mailer, exec_argv, Envp );
execv ( mailer, exec_argv );
/* this should not happen */
perror ("execve");
perror( "execv");
exit (1);
}