From fd9acb0004e7f182633f306c5da1bb52f177c569 Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Tue, 30 Mar 2010 10:08:17 -0800 Subject: [PATCH] (SIGAR-211) HPUX file_system_list needs to read /etc/mnttab instead of /etc/fstab --- src/os/hpux/hpux_sigar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/hpux/hpux_sigar.c b/src/os/hpux/hpux_sigar.c index ecf3678e..2c61302d 100644 --- a/src/os/hpux/hpux_sigar.c +++ b/src/os/hpux/hpux_sigar.c @@ -557,7 +557,7 @@ int sigar_file_system_list_get(sigar_t *sigar, FILE *fp; sigar_file_system_t *fsp; - if (!(fp = setmntent(MNT_CHECKLIST, "r"))) { + if (!(fp = setmntent(MNT_MNTTAB, "r"))) { return errno; }