]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- fixed error message 1165/head
authorArvin Schnell <aschnell@suse.de>
Tue, 30 Jun 2026 15:46:25 +0000 (17:46 +0200)
committerArvin Schnell <aschnell@suse.de>
Tue, 30 Jun 2026 15:46:25 +0000 (17:46 +0200)
snapper/Compare.cc

index a6333dbd2182512525985573b7ccc95f451fe03c..9608b78072af15e41a2b3e656f221bc05edca2b2 100644 (file)
@@ -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);
     }