[dovecot-cvs] dovecot-lda/src sieve-cmu.c,1.7,1.8

cras at dovecot.org cras at dovecot.org
Sat Sep 24 13:23:52 EEST 2005


Update of /var/lib/cvs/dovecot-lda/src
In directory talvi:/tmp/cvs-serv32413

Modified Files:
	sieve-cmu.c 
Log Message:
We were recompiling .sievec all the time unless its timestamp matched
exactly the .sieve script



Index: sieve-cmu.c
===================================================================
RCS file: /var/lib/cvs/dovecot-lda/src/sieve-cmu.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- sieve-cmu.c	15 Aug 2005 10:23:50 -0000	1.7
+++ sieve-cmu.c	24 Sep 2005 10:23:49 -0000	1.8
@@ -447,7 +447,7 @@
 			return -1;
 		}
 	} else {
-		if (st.st_mtime == st2.st_mtime)
+		if (st.st_mtime < st2.st_mtime)
 			return 0;
 	}
 



More information about the dovecot-cvs mailing list