- When a filter contains "uuid:<value>" this is matched using the partial
  match operator, which will allow use of abbreviated UUIDs.
This commit is contained in:
Paul Beckingham 2014-05-26 23:25:33 -04:00
parent 398bc9c824
commit f9d534939d

View file

@ -821,7 +821,8 @@ void Parser::findAttribute ()
branch->tag ("OP"); branch->tag ("OP");
// All 'project' attributes are partial matches. // All 'project' attributes are partial matches.
if (canonical == "project") if (canonical == "project" ||
canonical == "uuid")
branch->attribute ("raw", "="); branch->attribute ("raw", "=");
else else
branch->attribute ("raw", "=="); branch->attribute ("raw", "==");