]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Minor error message fix.
authorTimo Sirainen <tss@iki.fi>
Mon, 4 May 2009 22:12:04 +0000 (18:12 -0400)
committerTimo Sirainen <tss@iki.fi>
Mon, 4 May 2009 22:12:04 +0000 (18:12 -0400)
--HG--
branch : HEAD

src/master/main.c

index 5d8931e59e056aec605f38421855c6447a72b0df..030ede9ba4b50e111b6134035c4bcb948f3fd627 100644 (file)
@@ -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)