From 1cf07cd6fba213bcd82db8f93880f6daeceb5451 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 22 Jun 2015 16:20:22 -0400 Subject: [PATCH] CLI2: Fixed bug in UUID filtering - When filtering by UUID, the expression listed the 'uuid' attribute as a type Lexer::Type::string, which should have been Lexer::Type::dom. --- src/CLI2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 8fd4a263d..d0930b1ed 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1296,7 +1296,7 @@ void CLI2::insertIDExpr () A2 argID ("id", Lexer::Type::dom); argID.tag ("FILTER"); - A2 argUUID ("uuid", Lexer::Type::uuid); + A2 argUUID ("uuid", Lexer::Type::dom); argUUID.tag ("FILTER"); reconstructed.push_back (openParen);