CVSROOT: /sources/hurdextras
Module name: mboxfs
Changes by: Samuel Thibault <sthibaul> 24/11/16 17:27:59
Modified files:
. : ChangeLog
mutt : mbox.c
Log message:
Fix uninitialized variable
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/mboxfs/ChangeLog?cvsroot=hurdextras&r1=1.6&r2=1.7
http://cvs.savannah.gnu.org/viewcvs/mboxfs/mutt/mbox.c?cvsroot=hurdextras&r1=1.1&r2=1.2
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/hurdextras/mboxfs/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- ChangeLog 16 Nov 2024 22:12:19 -0000 1.6
+++ ChangeLog 16 Nov 2024 22:27:59 -0000 1.7
@@ -1,3 +1,7 @@
+2024-11-16 23:12 sthibaul
+
+ * ChangeLog, backend.h, mboxfs.c, netfs.c: fix 64b build
+
2023-10-03 21:28 sthibaul
* backend.h, fs.c, mboxfs.c, netfs.c: Fix build
Index: mutt/mbox.c
===================================================================
RCS file: /sources/hurdextras/mboxfs/mutt/mbox.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- mutt/mbox.c 11 Apr 2006 13:12:45 -0000 1.1
+++ mutt/mbox.c 16 Nov 2024 22:27:59 -0000 1.2
@@ -103,6 +103,10 @@
buf[sizeof (buf) - 1] = 0;
+ /* precompute the local timezone to speed up calculation of the
+ date received */
+ tz = mutt_local_tz (0);
+
for (;;)
{
if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL)
_______________________________________________
Hurdextras-commit mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/hurdextras-commit