Skip to content

Commit f45b9d2

Browse files
committed
check: add prefixsubst() to error message
1 parent 175a01c commit f45b9d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ int csync_check_mod(const char *file, int recursive, int ignnoent, int init_run)
290290
if ( check_type>0 && lstat_strict(prefixsubst(file), &st) != 0 ) {
291291
if ( ignnoent ) return 0;
292292
csync_fatal("This should not happen: "
293-
"Can't stat %s.\n", file);
293+
"Can't stat %s.\n", prefixsubst(file));
294294
}
295295

296296
switch ( check_type )

0 commit comments

Comments
 (0)