diff options
author | ru <ru@FreeBSD.org> | 2008-04-02 09:41:29 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2008-04-02 09:41:29 +0000 |
commit | 2823d2ffd5d0fb75eb74b2779457c997ad1ee352 (patch) | |
tree | 743688320391166e50eff7752f264246e85c8864 /usr.bin/kdump | |
parent | d00a98a4e8175ee4d7b1667493169cc971186183 (diff) | |
download | FreeBSD-src-2823d2ffd5d0fb75eb74b2779457c997ad1ee352.zip FreeBSD-src-2823d2ffd5d0fb75eb74b2779457c997ad1ee352.tar.gz |
Spell -t option's argument by name.
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/kdump.1 | 4 | ||||
-rw-r--r-- | usr.bin/kdump/kdump.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/kdump/kdump.1 b/usr.bin/kdump/kdump.1 index 87ba23d..34b5bd4 100644 --- a/usr.bin/kdump/kdump.1 +++ b/usr.bin/kdump/kdump.1 @@ -44,7 +44,7 @@ .Op Fl f Ar trfile .Op Fl m Ar maxdata .Op Fl p Ar pid -.Op Fl t Op cnistuw +.Op Fl t Ar trstr .Sh DESCRIPTION The .Nm @@ -103,7 +103,7 @@ GIDs, dates etc. symbolically instead of numerically. Suppress display of I/O data. .It Fl T Display absolute timestamps for each entry (seconds since epoch). -.It Fl t Ar cnistuw +.It Fl t Ar trstr See the .Fl t option of diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 7efd789..9ef6e7c 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -1361,6 +1361,6 @@ void usage(void) { fprintf(stderr, "usage: kdump [-dEnlHRrsT] [-f trfile] " - "[-m maxdata] [-p pid] [-t [cnistuw]]\n"); + "[-m maxdata] [-p pid] [-t trstr]\n"); exit(1); } |