summaryrefslogtreecommitdiffstats
path: root/usr.bin/fstat/fstat.1
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2011-09-28 18:53:36 +0000
committered <ed@FreeBSD.org>2011-09-28 18:53:36 +0000
commit2a84e78d2ee67e2efdc4107a8a067cca7f435e1c (patch)
treeefc748c3ad32a5751cb0627cfa2b151f69147a78 /usr.bin/fstat/fstat.1
parentce36da245f8d051544101d1b63405860d1e57c4b (diff)
downloadFreeBSD-src-2a84e78d2ee67e2efdc4107a8a067cca7f435e1c.zip
FreeBSD-src-2a84e78d2ee67e2efdc4107a8a067cca7f435e1c.tar.gz
Get rid of major/minor number distinction.
As of FreeBSD 6, devices can only be opened through devfs. These device nodes don't have major and minor numbers anymore. The st_rdev field in struct stat is simply based a copy of st_ino. Simply display device numbers as hexadecimal, using "%#jx". This is allowed by POSIX, since it explicitly states things like the following (example taken from ls(1)): "If the file is a character special or block special file, the size of the file may be replaced with implementation-defined information associated with the device in question." This makes the output of these commands more compact. For example, ls(1) now uses approximately four columns less. While there, simplify the column length calculation from ls(1) by calling snprintf() with a NULL buffer. Don't be afraid; if needed one can still obtain individual major/minor numbers using stat(1).
Diffstat (limited to 'usr.bin/fstat/fstat.1')
-rw-r--r--usr.bin/fstat/fstat.14
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fstat/fstat.1 b/usr.bin/fstat/fstat.1
index e1f1c1b..7403a8e 100644
--- a/usr.bin/fstat/fstat.1
+++ b/usr.bin/fstat/fstat.1
@@ -28,7 +28,7 @@
.\" @(#)fstat.1 8.3 (Berkeley) 2/25/94
.\" $FreeBSD$
.\"
-.Dd July 9, 2009
+.Dd September 28, 2011
.Dt FSTAT 1
.Os
.Sh NAME
@@ -142,7 +142,7 @@ pathname that the file system the file resides in is mounted on.
If the
.Fl n
flag is specified, this header is present and is the
-major/minor number of the device that this file resides in.
+number of the device that this file resides in.
.It Li INUM
The inode number of the file.
.It Li MODE
OpenPOWER on IntegriCloud