@@ -2,6 +2,7 @@
* cpio.c (cpio_create_entry): Added initial support for the Special
Named Files. Needed on QNX Neutrino.
+ * utilvfs.c (vfs_parse_filetype): Likewise.
2004-11-02 Roland Illig <roland.illig@gmx.de>
@@ -430,8 +430,11 @@ vfs_parse_filetype (char c)
#endif
case 'p':
return S_IFIFO;
- case 'm':
- case 'n': /* Don't know what these are :-) */
+ case 'n': /* Special named files */
+#ifdef S_IFNAM
+ return S_IFNAM;
+#endif /* S_IFNAM */
+ case 'm': /* Don't know what these are :-) */
case '-':
case '?':
return S_IFREG;