From: Timo Sirainen Date: Mon, 15 Nov 2010 16:25:23 +0000 (+0000) Subject: istream-file: Minor error message fix. X-Git-Tag: 2.0.8~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=334fcad698ed0fd1319c5350eb3f7bcf9da242bf;p=thirdparty%2Fdovecot%2Fcore.git istream-file: Minor error message fix. --- diff --git a/src/lib/istream-file.c b/src/lib/istream-file.c index 9d7ecbd416..a391032c67 100644 --- a/src/lib/istream-file.c +++ b/src/lib/istream-file.c @@ -159,7 +159,7 @@ i_stream_file_stat(struct istream_private *stream, bool exact ATTR_UNUSED) } } else { if (stat(name, &stream->statbuf) < 0) { - i_error("file_istream.fstat(%s) failed: %m", name); + i_error("file_istream.stat(%s) failed: %m", name); return NULL; } }