Indentation indicates missing braces.

Spotted by:	FlexeLint
This commit is contained in:
Poul-Henning Kamp 2002-10-01 21:59:46 +00:00
parent fcd054483a
commit c2476fafad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104321

View file

@ -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) {