From e00acaddd8d445e1589c0dfc4820f2bda8344a31 Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Mon, 31 Jan 2011 16:40:24 -0800 Subject: [PATCH] Login's confused messages now go through weird.bro. --- CHANGES | 4 ++++ VERSION | 2 +- policy/login.bro | 5 +---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 0af3a0a896..286e9abe76 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.6-dev.39 Mon Jan 31 16:42:23 PST 2011 + +- Login's confused messages now go through weird.bro. (Robin Sommer) + 1.6-dev.36 Mon Jan 31 08:45:35 PST 2011 - Adding more configure options for finding dependencies, (Jon Siwek) diff --git a/VERSION b/VERSION index 3ea16f0f3f..80eb02f177 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6-dev.36 +1.6-dev.39 diff --git a/policy/login.bro b/policy/login.bro index 26d32ca08c..9d45249bb1 100644 --- a/policy/login.bro +++ b/policy/login.bro @@ -544,10 +544,7 @@ event login_confused(c: connection, msg: string, line: string) append_addl(c, ""); - if ( line == "" ) - print Weird::weird_file, fmt("%.6f %s %s", network_time(), id_string(c$id), msg); - else - print Weird::weird_file, fmt("%.6f %s %s (%s)", network_time(), id_string(c$id), msg, line); + event conn_weird_addl(msg, c, line); set_record_packets(c$id, T); }