fix fakeraid/softraid detection (Cyberjean, Szaka)

master
szaka 2007-03-03 23:31:48 +00:00
parent 95e5a206c7
commit 3e9874de79
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ ntfs_volume *utils_mount_volume(const char *volume, unsigned long flags,
ntfs_log_error("%s", unclean_journal_msg);
else if (errno == EBUSY)
ntfs_log_error("%s", opened_volume_msg);
else if (errno == ENODEV)
else if (errno == ENXIO)
ntfs_log_error("%s", fakeraid_msg);
return NULL;