(SIGAR-211) HPUX file_system_list needs to read /etc/mnttab instead of /etc/fstab

This commit is contained in:
Doug MacEachern 2010-03-30 10:08:17 -08:00
parent e20e2eaa54
commit fd9acb0004
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ int sigar_file_system_list_get(sigar_t *sigar,
FILE *fp; FILE *fp;
sigar_file_system_t *fsp; sigar_file_system_t *fsp;
if (!(fp = setmntent(MNT_CHECKLIST, "r"))) { if (!(fp = setmntent(MNT_MNTTAB, "r"))) {
return errno; return errno;
} }