dovecot-2.0: maildir: get_save_date() should return 0, not the t...

dovecot at dovecot.org dovecot at dovecot.org
Mon Mar 22 02:16:53 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/1b588519f00c
changeset: 10971:1b588519f00c
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Mar 22 02:16:46 2010 +0200
description:
maildir: get_save_date() should return 0, not the timestamp.
Patch by Rainer Weikusat

diffstat:

 src/lib-storage/index/maildir/maildir-mail.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 0f1b86898124 -r 1b588519f00c src/lib-storage/index/maildir/maildir-mail.c
--- a/src/lib-storage/index/maildir/maildir-mail.c	Mon Mar 22 01:49:31 2010 +0200
+++ b/src/lib-storage/index/maildir/maildir-mail.c	Mon Mar 22 02:16:46 2010 +0200
@@ -167,7 +167,7 @@
 		return -1;
 
 	*date_r = data->save_date = st.st_ctime;
-	return data->save_date;
+	return 0;
 }
 
 static int


More information about the dovecot-cvs mailing list