diff --git a/logging.c b/logging.c index e25a6188e..e47c05731 100644 --- a/logging.c +++ b/logging.c @@ -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); }