From 9d5299e84332ab6ab0e456a847058bdefa7e47df Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 25 Oct 2014 16:17:35 -0400 Subject: [PATCH] CLI - Now uses the attribute 'canonical' instead of 'name' for CMD args. --- src/CLI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 6391c9d9f..ab9776295 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -527,7 +527,7 @@ void CLI::categorize () a->tag ("CMD"); a->tag (readOnly ? "READCMD" : "WRITECMD"); - a->attribute ("name", canonical); + a->attribute ("canonical", canonical); foundCommand = true; } else if (a->hasTag ("TERMINATOR") ||