From: "Erich E. Hoover" Subject: [PATCH 6/7] kernel32: Advertise junction point support. Message-Id: Date: Wed, 20 Jun 2012 17:33:09 -0600 This patch advertises that a filesystem supports junction points (ISO9660, UDF, FAT16, and FAT32 do not support this feature). In part 1 I mistakenly stated that patch 5 adds this feature, I apologize for that, I realized this mistake after sending. From 6f9a6096d3fd1c5f3687ef304a4ec26b782f9d5a Mon Sep 17 00:00:00 2001 From: Erich Hoover Date: Wed, 20 Jun 2012 17:19:40 -0600 Subject: kernel32: Advertise junction point support. --- dlls/kernel32/volume.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/volume.c b/dlls/kernel32/volume.c index 23bcca1..f8a131d 100644 --- a/dlls/kernel32/volume.c +++ b/dlls/kernel32/volume.c @@ -791,7 +791,7 @@ fill_fs_info: /* now fill in the information that depends on the file system ty default: if (fsname) lstrcpynW( fsname, ntfsW, fsname_len ); if (filename_len) *filename_len = 255; - if (flags) *flags = FILE_CASE_PRESERVED_NAMES; + if (flags) *flags = FILE_CASE_PRESERVED_NAMES | FILE_SUPPORTS_REPARSE_POINTS; break; } ret = TRUE; -- 1.7.5.4