1
1

OPAL: skip comparison when when fs=autofs in mtab, because we are looking for reals fs type

Этот коммит содержится в:
Mike Dubman 2014-12-18 21:42:25 +02:00
родитель 140bb3d421
Коммит da5b8c6879

Просмотреть файл

@ -619,6 +619,9 @@ found:
int x;
if (NULL != fs_type) {
for (x = 0; x < FS_TYPES_NUM; x++) {
if (AUTOFS_SUPER_MAGIC == fs_types[x].f_fsid) {
continue;
}
if (0 == strcasecmp(fs_types[x].f_fsname, fs_type)) {
OPAL_OUTPUT_VERBOSE((10, 0, "opal_path_nfs: file:%s on fs:%s\n", fname, fs_type));
free(fs_type);