summaryrefslogtreecommitdiff
path: root/core/fs/fat/fat.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-08-12 21:31:49 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-08-12 21:31:49 -0700
commita1fc1f47b4e6080edabb517a070e3c1918c1b3a1 (patch)
tree356ba41f6458b48d80b8ec4c95eac618acf30917 /core/fs/fat/fat.c
parent43c00b21090c396f92502a6b6fc9c2bd35f59684 (diff)
downloadsyslinux-a1fc1f47b4e6080edabb517a070e3c1918c1b3a1.tar.gz
core: use stpcpy() as generic_unmangle_name()
We can use stpcpy() as generic_unmangle_name(); this also gives us the pointer to the end that the assembly code wants and expects. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/fs/fat/fat.c')
-rw-r--r--core/fs/fat/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fs/fat/fat.c b/core/fs/fat/fat.c
index 1b1c532e..0611caec 100644
--- a/core/fs/fat/fat.c
+++ b/core/fs/fat/fat.c
@@ -948,6 +948,6 @@ const struct fs_ops vfat_fs_ops = {
.getfssec = vfat_getfssec,
.close_file = vfat_close_file,
.mangle_name = vfat_mangle_name,
- .unmangle_name = NULL,
+ .unmangle_name = generic_unmangle_name,
.load_config = vfat_load_config
};