From 57c6639098d063aab93a88a79e9466815790e343 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Fri, 9 Jan 2009 05:27:34 +0000 Subject: [PATCH] Fix the ubiquitous typo in the previous commit. --- exec/spamc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/spamc.js b/exec/spamc.js index 84fbc8506e..faf854870a 100644 --- a/exec/spamc.js +++ b/exec/spamc.js @@ -59,7 +59,7 @@ function main() log(LOG_INFO, "spamc: score: " + ret.score + ' / ' + ret.threshold); - if(!reject_threshold || ret.score < reject_threshold)) { + if(!reject_threshold || ret.score < reject_threshold) { var msg_file = new File(message_text_filename); if(!msg_file.open("w")) { log(LOG_ERR,format("spamc: !ERROR %d opening message text file: %s" -- GitLab