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
..
1994-10-08 22:37:00 +00:00
1995-04-20 22:00:05 +00:00
1995-03-28 07:58:53 +00:00
1995-03-16 18:17:34 +00:00
1995-03-16 20:23:48 +00:00
1995-03-19 14:29:26 +00:00
1995-03-28 07:58:53 +00:00
1995-04-15 03:20:31 +00:00
1995-04-09 06:03:56 +00:00
1995-03-19 14:29:26 +00:00
1995-03-16 20:23:48 +00:00