From: Arvin Schnell Date: Tue, 30 Jun 2026 15:46:25 +0000 (+0200) Subject: - fixed error message X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1cc57c8b60eede8e7b4e837fc171dc704368f5ef;p=thirdparty%2Fsnapper.git - fixed error message --- diff --git a/snapper/Compare.cc b/snapper/Compare.cc index a6333dbd..9608b780 100644 --- a/snapper/Compare.cc +++ b/snapper/Compare.cc @@ -252,7 +252,7 @@ namespace snapper SN_THROW(IOErrorException("stat failed path:" + file1.fullname())); if (r2 != 0) - SN_THROW(IOErrorException("lstat failed path:" + file2.fullname())); + SN_THROW(IOErrorException("stat failed path:" + file2.fullname())); return cmpFiles(file1, stat1, file2, stat2); }