[Commits] [SCM] claws branch, master, updated. 3.15.0-66-g9ac3e5f

mones at claws-mail.org mones at claws-mail.org
Fri Jun 9 09:00:15 CEST 2017


The branch, master has been updated
       via  9ac3e5f952f6d0a8de663c4df44af59f30a0e20f (commit)
      from  88b0ebeb76c3f7762cc6cd04edf02faee7f7d4d4 (commit)

Summary of changes:
 src/messageview.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


- Log -----------------------------------------------------------------
commit 9ac3e5f952f6d0a8de663c4df44af59f30a0e20f
Author: Ricardo Mones <ricardo at mones.org>
Date:   Fri Jun 9 08:58:07 2017 +0200

    Use correct variable in printf
    
    A new buf_date was introduced, but the old pointer (buf) still used in
    the printf(). Patch by Olivier Brunel.

diff --git a/src/messageview.c b/src/messageview.c
index 68e9038..01163bb 100644
--- a/src/messageview.c
+++ b/src/messageview.c
@@ -966,7 +966,7 @@ static gint disposition_notification_send(MsgInfo *msginfo)
 
 	/* Date */
 	get_rfc822_date(buf_date, sizeof(buf_date));
-	if (fprintf(fp, "Date: %s\n", buf) < 0)
+	if (fprintf(fp, "Date: %s\n", buf_date) < 0)
 		goto FILE_ERROR;
 
 	/* From */

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list