mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Input Manager: tiny error message fix.
This commit is contained in:
parent
7bbaa911b0
commit
ae6dbf17a2
2 changed files with 2 additions and 2 deletions
|
@ -2380,7 +2380,7 @@ Val* Manager::ValueToVal(const Stream* i, const Value* val, BroType* request_typ
|
|||
bro_int_t index = request_type->AsEnumType()->Lookup(module, var.c_str());
|
||||
if ( index == -1 )
|
||||
{
|
||||
Warning(i, "Value not '%s' for stream '%s' is not a valid enum.",
|
||||
Warning(i, "Value '%s' for stream '%s' is not a valid enum.",
|
||||
enum_string.c_str(), i->name.c_str());
|
||||
|
||||
have_error = true;
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
warning: Value not 'IdoNot::Exist' for stream 'enum' is not a valid enum.
|
||||
warning: Value 'IdoNot::Exist' for stream 'enum' is not a valid enum.
|
||||
received termination signal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue