From fc372f7316d21823df75479f28aa26fb62671d86 Mon Sep 17 00:00:00 2001 From: szaka Date: Thu, 26 Mar 2009 15:55:50 +0000 Subject: [PATCH] ntfs_fuse_filler: fix misleading error message if filename decoding failed --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 1fc509d6..8785bae0 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -636,7 +636,7 @@ static int ntfs_fuse_filler(ntfs_fuse_fill_context_t *fill_ctx, return 0; if (ntfs_ucstombs(name, name_len, &filename, 0) < 0) { - ntfs_log_perror("Skipping unrepresentable filename (inode %llu)", + ntfs_log_perror("Filename decoding failed (inode %llu)", (unsigned long long)MREF(mref)); return -1; }