Replaced all occurances of ENOTSUP to EOPNOTSUPP to be in better harmony

with the kernel driver
This commit is contained in:
szaka
2005-08-01 22:10:38 +00:00
parent fd2e6eb09d
commit 06052dafcf
9 changed files with 53 additions and 50 deletions

View File

@@ -2184,7 +2184,7 @@ static ntfs_volume *mount_volume(void)
printf(corrupt_volume_msg);
else if (err == EPERM)
printf(hibernated_volume_msg);
else if (err == EOPNOTSUPP) /* NOTE: same as ENOTSUP !!! */
else if (err == EOPNOTSUPP)
printf(unclean_journal_msg);
exit(1);
}