Changeset 231
- Timestamp:
- May 13, 2009, 9:17:58 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r230 r231 1 2.5.6: 2 * recognize fdesc filesystem on MacOS X for suid check (Problem 3 reported by David) 4 1 5 2.5.5: 2 6 * fix some warnings from gcc 4.4 (strict aliasing) -
trunk/src/sh_suidchk.c
r227 r231 1006 1006 0 != strncmp (_("afs"), fs, 3) && 1007 1007 0 != strncmp (_("devfs"), fs, 5) && 1008 0 != strncmp (_("fdesc"), fs, 5) && 1008 1009 0 != strncmp (_("iso9660"), fs, 7) && 1010 0 != strncmp (_("cd9660"), fs, 6) && 1009 1011 0 != strncmp (_("lustre"), fs, 6) && 1010 1012 0 != strncmp (_("mmfs"), fs, 4) && … … 1012 1014 0 != strncmp (_("nfs"), fs, 3) && 1013 1015 0 != strncmp (_("proc"), fs, 4) && 1016 0 != strncmp (_("sysfs"), fs, 5) && 1014 1017 0 != strncmp (_("vfat"), fs, 4) 1015 1018 #endif … … 1740 1743 switch (t) 1741 1744 { 1745 #ifdef MOUNT_UFS 1742 1746 case MOUNT_UFS: 1743 1747 return _("ufs"); 1748 #endif 1749 #ifdef MOUNT_ISO9660 1750 case MOUNT_ISO9660: 1751 return _("iso9660fs"); 1752 #endif 1753 #ifdef MOUNT_CD9660 1754 case MOUNT_CD9660: 1755 return _("cd9660"); 1756 #endif 1757 #ifdef MOUNT_NFS 1744 1758 case MOUNT_NFS: 1745 1759 return _("nfs"); 1760 #endif 1746 1761 #ifdef MOUNT_PC 1747 1762 case MOUNT_PC: … … 1768 1783 return _("msdos"); 1769 1784 #endif 1770 #ifdef MOUNT_ISO9660 1771 case MOUNT_ISO9660: 1772 return _("iso9660fs"); 1785 #ifdef MOUNT_LFS 1786 case MOUNT_LFS: 1787 return _("lfs"); 1788 #endif 1789 #ifdef MOUNT_LOFS 1790 case MOUNT_LOFS: 1791 return _("lofs"); 1792 #endif 1793 #ifdef MOUNT_FDESC 1794 case MOUNT_FDESC: 1795 return _("fdesc"); 1796 #endif 1797 #ifdef MOUNT_PORTAL 1798 case MOUNT_PORTAL: 1799 return _("portal"); 1800 #endif 1801 #ifdef MOUNT_NULL 1802 case MOUNT_NULL: 1803 return _("null"); 1804 #endif 1805 #ifdef MOUNT_UMAP 1806 case MOUNT_UMAP: 1807 return _("umap"); 1808 #endif 1809 #ifdef MOUNT_KERNFS 1810 case MOUNT_KERNFS: 1811 return _("kernfs"); 1812 #endif 1813 #ifdef MOUNT_PROCFS 1814 case MOUNT_PROCFS: 1815 return _("procfs"); 1816 #endif 1817 #ifdef MOUNT_DEVFS 1818 case MOUNT_DEVFS: 1819 return _("devfs"); 1820 #endif 1821 #ifdef MOUNT_EXT2FS 1822 case MOUNT_EXT2FS: 1823 return _("ext2fs"); 1824 #endif 1825 #ifdef MOUNT_UNION 1826 case MOUNT_UNION: 1827 return _("union"); 1773 1828 #endif 1774 1829 default:
Note:
See TracChangeset
for help on using the changeset viewer.