Deleted Added
full compact
46c46
< __FBSDID("$FreeBSD: head/usr.bin/fstat/fstat.c 130489 2004-06-14 20:54:18Z rwatson $");
---
> __FBSDID("$FreeBSD: head/usr.bin/fstat/fstat.c 130640 2004-06-17 17:16:53Z phk $");
588,589c588,589
< * The st_dev from stat(2) is a udev_t. These kernel structures
< * contain dev_t structures. We need to convert to udev to make
---
> * The st_dev from stat(2) is a dev_t. These kernel structures
> * contain cdev pointers. We need to convert to dev_t to make
878,879c878,879
< * Read the cdev structure in the kernel (as pointed to by a dev_t)
< * in order to work out the associated udev_t
---
> * Read the cdev structure in the kernel in order to work out the
> * associated dev_t
881c881
< udev_t
---
> dev_t
890c890
< dprintf(stderr, "can't convert dev_t %x to a udev_t\n", dev);
---
> dprintf(stderr, "can't convert cdev *%x to a dev_t\n", dev);