Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Feb 2021 23:59:11 GMT
From:      Ryan Libby <rlibby@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d85c9cef1380 - main - ddb: reliably fail with ambiguous commands
Message-ID:  <202102242359.11ONxBYv012939@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by rlibby:

URL: https://cgit.FreeBSD.org/src/commit/?id=d85c9cef1380f4f135aee95ad8c1f4d3eca74c5b

commit d85c9cef1380f4f135aee95ad8c1f4d3eca74c5b
Author:     Ryan Libby <rlibby@FreeBSD.org>
AuthorDate: 2021-02-24 23:56:16 +0000
Commit:     Ryan Libby <rlibby@FreeBSD.org>
CommitDate: 2021-02-24 23:56:16 +0000

    ddb: reliably fail with ambiguous commands
    
    db_cmd_match had an even/odd bug, where if a third command was partially
    matched (or any odd number greater than one) the search result would be
    set back from CMD_AMBIGUOUS to CMD_FOUND, causing the last command in
    the list to be executed instead of failing the match.
    
    Reported by:    mlaier
    Reviewed by:    markj, mlaier, vangyzen
    Sponsored by:   Dell EMC Isilon
    Differential Revision:  https://reviews.freebsd.org/D28659
---
 sys/ddb/db_command.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index fedec1dd33a4..e1f822ef44d8 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -293,7 +293,7 @@ db_cmd_match(char *name, struct command *cmd, struct command **cmdp,
 			*resultp = CMD_AMBIGUOUS;
 			/* but keep looking for a full match -
 			   this lets us match single letters */
-		} else {
+		} else if (*resultp == CMD_NONE) {
 			*cmdp = cmd;
 			*resultp = CMD_FOUND;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102242359.11ONxBYv012939>