diff options
author | Guillaume Friloux <kuri@e4.enlightenment.org> | 2013-06-05 11:20:38 +0200 |
---|---|---|
committer | Guillaume Friloux <kuri@e4.enlightenment.org> | 2013-06-05 11:20:38 +0200 |
commit | 7f52bcb2d804a2f6df924f0174ef106362c55533 (patch) | |
tree | 6fc7898d8c1107470bb763151a61a6ae012a1af8 | |
parent | 4748ca329e97d5644d7dc5e298f97387d17c042f (diff) |
fix badly init var :x
-rw-r--r-- | src/bin/rules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/rules.c b/src/bin/rules.c index 31128a0..53017e4 100644 --- a/src/bin/rules.c +++ b/src/bin/rules.c | |||
@@ -270,7 +270,7 @@ int rules_filtermessage(struct logmessage *new_logmessage) | |||
270 | } | 270 | } |
271 | } | 271 | } |
272 | 272 | ||
273 | excluded = 1; | 273 | excluded = 0; |
274 | 274 | ||
275 | // For every regex affected to the rule, we apply it to the | 275 | // For every regex affected to the rule, we apply it to the |
276 | // Log message we got to see if we have something to filter | 276 | // Log message we got to see if we have something to filter |