dovecot: Fix to 64bit time_t

dovecot at dovecot.org dovecot at dovecot.org
Sun Oct 21 18:58:04 EEST 2007


details:   http://hg.dovecot.org/dovecot/rev/7b5b3b0c7002
changeset: 6597:7b5b3b0c7002
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Oct 21 17:41:30 2007 +0300
description:
Fix to 64bit time_t

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/lib/utc-mktime.c |    2 +-

diffs (12 lines):

diff -r 454829f6655b -r 7b5b3b0c7002 src/lib/utc-mktime.c
--- a/src/lib/utc-mktime.c	Sun Oct 21 17:00:35 2007 +0300
+++ b/src/lib/utc-mktime.c	Sun Oct 21 17:41:30 2007 +0300
@@ -23,7 +23,7 @@ time_t utc_mktime(const struct tm *tm)
 time_t utc_mktime(const struct tm *tm)
 {
 	const struct tm *try_tm;
-	int t;
+	time_t t;
 	int bits, dir;
 
 	/* we'll do a binary search across the entire valid time_t range.


More information about the dovecot-cvs mailing list