A few small updates for test baselines I updated earlier.

This commit is contained in:
Seth Hall 2011-09-29 15:52:25 -04:00
parent 936e6ad746
commit 7ae4a37279
2 changed files with 2 additions and 2 deletions

View file

@ -221,7 +221,7 @@ function add_data(id: ID, index: Index, increment: count)
# Don't add the data if the aggregation table doesn't include
# the given host address.
if ( index$host !in filter$aggregation_table )
next;
return;
index$network = filter$aggregation_table[index$host];
delete index$host;
}

View file

@ -378,9 +378,9 @@ event software_register(id: conn_id, info: Info)
if ( ! info$force_log && cmp_versions(old$version, info$version) == 0 )
return;
}
ts[info$name] = info;
Log::write(Software::LOG, info);
ts[info$name] = info;
}
function found(id: conn_id, info: Info): bool