One more very minor change I forgot to commit.

This commit is contained in:
Seth Hall 2012-02-03 16:27:51 -05:00
parent 0fbe925dc5
commit 600d015dab

View file

@ -366,7 +366,7 @@ function software_fmt(i: Info): string
# Insert a mapping into the table # Insert a mapping into the table
# Overides old entries for the same software and generates events if needed. # Overides old entries for the same software and generates events if needed.
event software_register(id: conn_id, info: Info) event register(id: conn_id, info: Info)
{ {
# Host already known? # Host already known?
if ( info$host !in tracked ) if ( info$host !in tracked )
@ -418,7 +418,7 @@ function found(id: conn_id, info: Info): bool
info$version = sw$version; info$version = sw$version;
} }
event software_register(id, info); event register(id, info);
return T; return T;
} }
else else