*** modules/fstab-module.c~ Wed Dec 29 22:51:17 2004 --- modules/fstab-module.c Wed Jan 19 19:53:13 2005 *************** *** 714,720 **** else if (strcmp(MNTTYPE_CACHEFS, vbuf.vfs_fstype) == 0) SET_PROC_TYPE(fstat_xfdir.gl[i].en->subtype); - i++; /* * Check if filesystem is already mounted * --- 715,720 ---- *************** *** 724,732 **** if (getmntent(mnttab_fp, &mbuf) != 0) break; ! if (strcmp(mbuf.mnt_mountp, vbuf.vfs_mountp) == 0) TOGGLE_MOUNTED(fstat_xfdir.gl[i].en->type); } } (void)fclose(mnttab_fp); --- 724,735 ---- if (getmntent(mnttab_fp, &mbuf) != 0) break; ! if (strcmp(mbuf.mnt_mountp, vbuf.vfs_mountp) == 0) { TOGGLE_MOUNTED(fstat_xfdir.gl[i].en->type); + break; + } } + i++; } (void)fclose(mnttab_fp);