From b2d33467b89f2bb3b563909c639222aeb968f0bd Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Wed, 31 Mar 2010 10:53:48 -0700 Subject: [PATCH] (SIGAR-210) recognize cifs as a network file system --- src/sigar.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sigar.c b/src/sigar.c index af6cee1f..8d6a2a4b 100644 --- a/src/sigar.c +++ b/src/sigar.c @@ -433,6 +433,9 @@ static int sigar_common_fs_type_get(sigar_file_system_t *fsp) if (strEQ(type, "cvfs")) { fsp->type = SIGAR_FSTYPE_LOCAL_DISK; } + else if (strEQ(type, "cifs")) { + fsp->type = SIGAR_FSTYPE_NETWORK; + } break; case 'm': if (strEQ(type, "msdos") || strEQ(type, "minix")) {