From: Timo Sirainen Date: Sun, 20 Jul 2008 15:16:46 +0000 (+0300) Subject: istream-seekable: Log file creation error as creat() failure, not open(). X-Git-Tag: 1.2.alpha1~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd6983e422e8c23fce618d0c27b17e0def3b1654;p=thirdparty%2Fdovecot%2Fcore.git istream-seekable: Log file creation error as creat() failure, not open(). --HG-- branch : HEAD --- diff --git a/src/lib/istream-seekable.c b/src/lib/istream-seekable.c index 202b4999b7..ae09a66a41 100644 --- a/src/lib/istream-seekable.c +++ b/src/lib/istream-seekable.c @@ -98,7 +98,7 @@ static int copy_to_temp_file(struct seekable_istream *sstream) break; if (errno != EEXIST) { - i_error("open(%s) failed: %m", path); + i_error("creat(%s) failed: %m", path); return -1; } }