From 1d747d1eb9c8538e306e5c4c9ee638b62e266498 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Wed, 26 Sep 2012 16:54:37 -0700 Subject: [PATCH] OSDCap: fix typo in comment The grammar uses auid, not uid. Signed-off-by: Josh Durgin --- src/osd/OSDCap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/OSDCap.cc b/src/osd/OSDCap.cc index c1a9e9e337020..dbb1a97bcdc45 100644 --- a/src/osd/OSDCap.cc +++ b/src/osd/OSDCap.cc @@ -154,7 +154,7 @@ struct OSDCapParser : qi::grammar unquoted_word %= +(alnum | '_' | '-'); str %= quoted_string | unquoted_word; - // match := [pool | uid <123>] [object_prefix ] + // match := [pool | auid <123>] [object_prefix ] pool_name %= -(lit("pool") >> str); object_prefix %= -(lit("object_prefix") >> str); match = ( (lit("auid") >> int_ >> object_prefix) [_val = phoenix::construct(_1, _2)] | -- 2.39.5