summaryrefslogtreecommitdiffstats
path: root/src/cfg_utils.c
diff options
context:
space:
mode:
authorcebka@lenovo-laptop <cebka@lenovo-laptop>2010-01-14 14:33:21 +0300
committercebka@lenovo-laptop <cebka@lenovo-laptop>2010-01-14 14:33:21 +0300
commit44ac3fca90327780619b56e18bd3092426900bb2 (patch)
tree23ca94c5ff48a8047e72fb5a16a9e8c7076314ea /src/cfg_utils.c
parent95133a591e7f09a0601b34e8c436cd3c3483af37 (diff)
downloadrspamd-44ac3fca90327780619b56e18bd3092426900bb2.tar.gz
rspamd-44ac3fca90327780619b56e18bd3092426900bb2.zip
* Fix misprint
Diffstat (limited to 'src/cfg_utils.c')
-rw-r--r--src/cfg_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg_utils.c b/src/cfg_utils.c
index ca12a22d0..023d97315 100644
--- a/src/cfg_utils.c
+++ b/src/cfg_utils.c
@@ -665,7 +665,7 @@ internal_normalizer_func (double score, void *data)
if (score < 0) {
return score;
}
- else if (score > 0.001 && score > 1) {
+ else if (score > 0.001 && score < 1) {
return 1;
}
else if (score > 1 && score < max / 2.) {