From 334fcad698ed0fd1319c5350eb3f7bcf9da242bf Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 15 Nov 2010 16:25:23 +0000 Subject: [PATCH] istream-file: Minor error message fix. --- src/lib/istream-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.47.3