diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-08-13 15:42:04 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-08-13 15:42:04 +0000 |
commit | 2b9a01b19d51c242e461c39d0d3b545f5933debe (patch) | |
tree | 4ce67ce61958be97ae0963f0a850204c19f08827 /sys/ddb | |
parent | 171fd2dccafa9efa9c30f426768f80c9bea4ccf6 (diff) |
fix a typo its supposed to be show all vnodes not show all vnodes,
ddb does keyword matching so i missed this.
spotted by jasper@
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 1ba56005ab8..93160167b8b 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_command.c,v 1.57 2009/08/13 13:49:20 thib Exp $ */ +/* $OpenBSD: db_command.c,v 1.58 2009/08/13 15:42:03 thib Exp $ */ /* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */ /* @@ -469,7 +469,7 @@ struct db_command db_show_all_cmds[] = { { "callout", db_show_callout, 0, NULL }, { "pools", db_show_all_pools, 0, NULL }, { "mounts", db_show_all_mounts, 0, NULL }, - { "vnodes,", db_show_all_vnodes, 0, NULL }, + { "vnodes", db_show_all_vnodes, 0, NULL }, #ifdef NFSCLIENT { "nfsreq", db_show_all_nfsreqs, 0, NULL }, #endif |