Fix broken command parser (fall back 10 yards and scratch head).

This commit is contained in:
Paul Traina 1994-10-22 06:19:53 +00:00
parent 2f822e9be7
commit 0d78c1c051
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3776

View File

@ -951,7 +951,7 @@ yylex()
upper(cbuf);
p = lookup(cmdtab, cbuf);
cbuf[cpos] = c;
if (guest != 0 && p != 0) {
if (p != 0) {
if (p->implemented == 0) {
nack(p->name);
longjmp(errcatch,0);