diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-01 21:59:46 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-01 21:59:46 +0000 |
| commit | c2476fafadd2525abcdcb2ada8966472f0b0919d (patch) | |
| tree | 14408b3f93a3cb5b7b14183ac735f8039bb296d3 /sys/ddb/db_command.c | |
| parent | fcd054483ae1b234eed4c2050cbcbd6bc6fd9894 (diff) | |
Notes
Diffstat (limited to 'sys/ddb/db_command.c')
| -rw-r--r-- | sys/ddb/db_command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index cf3c6b77ea95..62ed3065fa30 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -278,9 +278,10 @@ db_command(last_cmdp, cmd_table, aux_cmd_tablep, aux_cmd_tablep_end) if ((cmd_table = cmd->more) != 0) { /* XXX usually no more aux's. */ aux_cmd_tablep = 0; - if (cmd_table == db_show_cmds) + if (cmd_table == db_show_cmds) { aux_cmd_tablep = SET_BEGIN(db_show_cmd_set); aux_cmd_tablep_end = SET_LIMIT(db_show_cmd_set); + } t = db_read_token(); if (t != tIDENT) { |
