2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-04 00:05:11 +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 */ /* child parent */
(void) close(1); (void) close(1);
execve ( mailer, exec_argv, Envp ); execv ( mailer, exec_argv );
/* this should not happen */ /* this should not happen */
perror ("execve"); perror( "execv");
exit (1); exit (1);
} }