From: Timo Sirainen Date: Mon, 4 May 2009 22:12:04 +0000 (-0400) Subject: Minor error message fix. X-Git-Tag: 2.0.alpha1~840 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b1219d3c6420bd6d13a68b163281bc17dc59888;p=thirdparty%2Fdovecot%2Fcore.git Minor error message fix. --HG-- branch : HEAD --- diff --git a/src/master/main.c b/src/master/main.c index 5d8931e59e..030ede9ba4 100644 --- a/src/master/main.c +++ b/src/master/main.c @@ -61,7 +61,7 @@ void process_exec(const char *cmd, const char *extra_args[]) argv[0] = t_strconcat(PACKAGE"/", argv[0], NULL); execv(executable, (char **)argv); - i_fatal_status(FATAL_EXEC, "execvp(%s) failed: %m", executable); + i_fatal_status(FATAL_EXEC, "execv(%s) failed: %m", executable); } static void create_pid_file(const char *path)