1
1

* cpio.c (cpio_create_entry): Added initial support for the Special

Named Files. Needed on QNX Neutrino.
       * utilvfs.c (vfs_parse_filetype): Likewise.
Этот коммит содержится в:
Andrew V. Samoilov 2004-11-03 20:38:56 +00:00
родитель fd5d77fc7b
Коммит f1e93d60f7
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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;