Relocated the mount point field in volume

The location of the mount point field in the volume attributes was
dependent on compiling options, thus creating an uneasy dependency
for plugins. So relocate the field to be independent on options.
pull/2/head
Jean-Pierre André 2021-01-26 10:06:17 +01:00
parent 8fa3dd3f22
commit a67746c8a8
1 changed files with 1 additions and 1 deletions

View File

@ -256,6 +256,7 @@ struct _ntfs_volume {
s64 free_mft_records; /* Same for free mft records (see above) */
BOOL efs_raw; /* volume is mounted for raw access to
efs-encrypted files */
const char *abs_mnt_point; /* Mount point */
#ifdef XATTR_MAPPINGS
struct XATTRMAPPING *xattr_mapping;
#endif /* XATTR_MAPPINGS */
@ -274,7 +275,6 @@ struct _ntfs_volume {
#if CACHE_LEGACY_SIZE
struct CACHE_HEADER *legacy_cache;
#endif
const char *abs_mnt_point; /* Mount point */
};
extern const char *ntfs_home;