mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Fixing bug in log managers predicate evaluation.
This commit is contained in:
parent
e78a3c35e5
commit
f61fcf219a
3 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
|||
|
||||
1.6-dev-1482 | 2011-10-25 19:08:32 -0700
|
||||
|
||||
* Fixing bug in log managers predicate evaluation. (Robin Sommer)
|
||||
|
||||
1.6-dev-1481 | 2011-10-25 18:17:03 -0700
|
||||
|
||||
* Fix a problem with DNS servers being logged that aren't actually
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.6-dev-1481
|
||||
1.6-dev-1482
|
||||
|
|
|
@ -894,7 +894,7 @@ bool LogMgr::Write(EnumVal* id, RecordVal* columns)
|
|||
try
|
||||
{
|
||||
Val* v = filter->pred->Call(&vl);
|
||||
int result = v->AsBool();
|
||||
result = v->AsBool();
|
||||
Unref(v);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue