freebsd-dev/sys/miscfs
Julian Elischer b9494fba51 Submitted by: phk@freebsd.org
Reviewed by:	Julian
fixes the 'find' anomaly mentionned in the README
(hmm I guess I should fix that too..)

diff -r1.2 devfs_vnops.c
905a906
>                       dirent.d_type = DT_DIR;
914a916
>                       dirent.d_type = DT_DIR;
920a923,941
>                       switch(name_node->dnp->type) {
>                       case DEV_BDEV:
>                               dirent.d_type = DT_BLK;
>                               break;
>                       case DEV_CDEV:
>                               dirent.d_type = DT_CHR;
>                               break;
>                       case DEV_DDEV:
>                               dirent.d_type = DT_SOCK; /*XXX*/
>                               break;
>                       case DEV_DIR:
>                               dirent.d_type = DT_DIR;
>                               break;
>                       case DEV_SLNK:
>                               dirent.d_type = DT_LNK;
>                               break;
>                       default:
>                               dirent.d_type = DT_UNKNOWN;
>                       }
1995-04-20 22:00:05 +00:00
..
deadfs Cosmetics: added a #include and a static prototype to silence gcc. 1994-10-08 22:37:00 +00:00
devfs Submitted by: phk@freebsd.org 1995-04-20 22:00:05 +00:00
fdesc Add and move declarations to fix all of the warnings from `gcc -Wimplicit' 1995-03-28 07:58:53 +00:00
fifofs Add and move declarations to fix all of the warnings from `gcc -Wimplicit' 1995-03-16 18:17:34 +00:00
kernfs Add four more filesystem flags: 1995-03-16 20:23:48 +00:00
nullfs Removed redundant newlines that were in some panic strings. 1995-03-19 14:29:26 +00:00
portal Add and move declarations to fix all of the warnings from `gcc -Wimplicit' 1995-03-28 07:58:53 +00:00
procfs For P_SUGID processes, we must also change ownership of the mem file 1995-04-15 03:20:31 +00:00
specfs Changes from John Dyson and myself: 1995-04-09 06:03:56 +00:00
umapfs Removed redundant newlines that were in some panic strings. 1995-03-19 14:29:26 +00:00
union Add four more filesystem flags: 1995-03-16 20:23:48 +00:00