summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>1993-09-04 19:15:46 +0000
committerTodd C. Miller <Todd.Miller@courtesan.com>1993-09-04 19:15:46 +0000
commit7636fe0a6634293eb405a480aa771cc421e183c1 (patch)
tree6500e95d663aec4289cc38aa48d313acb54fa370
parentdfda1d59b17edf985f2f6a7e79dc93114b3f9fc2 (diff)
downloadsudo-7636fe0a6634293eb405a480aa771cc421e183c1.tar.gz
now uses USE_CWD
-rw-r--r--logging.c4
1 files changed, 2 insertions, 2 deletions
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);
}