From 1ac65f44d292f1fb395bef075f11632f985b5a8c Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Sun, 19 Jun 2011 02:24:48 -0400 Subject: [PATCH] Fixing a bug with MIME entity hashing. --- policy/protocols/mime/file-hash.bro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/policy/protocols/mime/file-hash.bro b/policy/protocols/mime/file-hash.bro index 2bbdb8d2d3..7a11091454 100644 --- a/policy/protocols/mime/file-hash.bro +++ b/policy/protocols/mime/file-hash.bro @@ -73,6 +73,6 @@ event mime_end_entity(c: connection) &priority=-3 c$mime$md5 = md5_hash_finish(c$id); NOTICE([$note=MD5, $msg=fmt("Calculated a hash for a MIME entity from %s", c$id$orig_h), - $sub=c$http$md5, $conn=c]); + $sub=c$mime$md5, $conn=c]); } } \ No newline at end of file