Adding &log attribute to static attr_names array.

This commit is contained in:
Jon Siwek 2011-05-06 18:52:23 -05:00
parent 34c475d4db
commit 2a21ebba2e
2 changed files with 3 additions and 1 deletions

View file

@ -118,4 +118,6 @@ The Bro scripting language supports the following built-in attributes.
.. bro:attr:: &group
.. bro:attr:: &log
.. bro:attr:: (&tracked)

View file

@ -19,7 +19,7 @@ const char* attr_name(attr_tag t)
"&persistent", "&synchronized", "&postprocessor",
"&encrypt", "&match", "&disable_print_hook",
"&raw_output", "&mergeable", "&priority",
"&group", "(&tracked)",
"&group", "&log", "(&tracked)",
};
return attr_names[int(t)];