dovecot-sieve-1.1: Minor fix

dovecot at dovecot.org dovecot at dovecot.org
Thu Aug 9 15:16:45 EEST 2007


details:   http://hg.dovecot.org/dovecot-sieve-1.1/rev/0d7f8f2dd9c4
changeset: 32:0d7f8f2dd9c4
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Aug 09 15:16:43 2007 +0300
description:
Minor fix

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/libsieve/bc_eval.c |    2 +-

diffs (12 lines):

diff -r 131e25f6862b -r 0d7f8f2dd9c4 src/libsieve/bc_eval.c
--- a/src/libsieve/bc_eval.c	Fri Jul 20 12:37:15 2007 +0300
+++ b/src/libsieve/bc_eval.c	Thu Aug 09 15:16:43 2007 +0300
@@ -320,7 +320,7 @@ static int shouldRespond(void * m, sieve
 		       (interp->getheader(m, buf, &body) == SIEVE_OK)))
 	    found = look_for_me(myaddr, numaddresses, bc, i, body);
 	if (!found && (strcpy(buf, "resent-to"),
-		       interp->getheader(m, buf, &body) == SIEVE_OK))
+		       (interp->getheader(m, buf, &body) == SIEVE_OK)))
 	    found = look_for_me(myaddr, numaddresses ,bc, i, body);
 	if (!found && (strcpy(buf, "resent-cc"),
 		       (interp->getheader(m, buf, &body) == SIEVE_OK)))


More information about the dovecot-cvs mailing list