Changeset 4395 in vbox for trunk/src/VBox
- Timestamp:
- Aug 27, 2007 8:57:01 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23958
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r4096 r4395 1847 1847 tmp = strchr(mnt_type, ','); 1848 1848 if (tmp) 1849 {1850 1849 *tmp = '\0'; 1851 }1852 1850 } 1853 1851 } … … 1861 1859 tmp = strchr(mnt_dev, ','); 1862 1860 if (tmp) 1863 {1864 1861 *tmp = '\0'; 1865 }1866 1862 } 1867 1863 } 1868 1864 } 1869 if (strcmp(mnt_type, "iso9660") == 0) 1865 // use strstr here to cover things fs types like "udf,iso9660" 1866 if (strstr(mnt_type, "iso9660") == 0) 1870 1867 { 1871 1868 /** @todo check whether we've already got the drive in our list! */
Note:
See TracChangeset
for help on using the changeset viewer.