]> granicus.if.org Git - mutt/commitdiff
I shouldn't accept patches on New Year's day. Not even new-year
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 2 Jan 1999 17:23:23 +0000 (17:23 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 2 Jan 1999 17:23:23 +0000 (17:23 +0000)
related patches.

ChangeLog
sendlib.c

index 39bd3d3ab2afea359309c310c9c197f40329b833..547b69ea2426885a32dbf5b5273b2975cb9cad8c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,34 @@
+Sat Jan  2 09:35:09 1999  Thomas Roessler  <roessler@guug.de>
+
+       * protos.h, parse.c, handler.c: mutt_parse_date () shouldn't
+         modify its argument.  Problem noted by Byrial Jensen.
+
+       * lib.c: Fix safe_symlink to correctly handle relative paths.
+
+Fri Jan  1 09:43:15 1999  Thomas Roessler  <roessler@guug.de>
+
+       * sendlib.c: New Year's time zone handling patch from Manish
+         Singh <yosh@gimp.org>.
+
+Thu Dec 31 09:45:46 1998  Thomas Roessler  <roessler@guug.de>
+
+       * curs_main.c: The attached patch moves code for sorting the
+         index and restoring the current message from
+         mutt_index_menu() to a new function. It saves code
+         duplication.
+
+Wed Dec 30 07:58:40 1998  Thomas Roessler  <roessler@guug.de>
+
+       * pgp.c, main.c: Localize some more messages.  From Michael Sobolev.
+
+Tue Dec 29 16:29:03 1998  Thomas Roessler  <roessler@guug.de>
+
+       * mbox.c, ChangeLog: Use sizeof instead of strlen for some
+         fixed strings.
+
+       * mh.c: Take setting the index_hint out of the main loop of
+         mh_check_mailbox().
+
 Mon Dec 28 14:59:04 1998  Thomas Roessler  <roessler@guug.de>
 
        * attach.c: Fix a segmentation fault when viewing
index df97dc963a8515f57fbd5d00eec3ce71305a92c0..3ceb65b4d4b1bac0c125f5eccddb77a52cb7ad2b 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -1156,7 +1156,7 @@ char *mutt_make_date (char *s, size_t len)
   if (yday != 0)
   {
     if (yday > 1 || yday < -1)
-      yday /= -yday;
+      yday /= - abs (yday);
 
     tz += yday * 24 * 60; /* GMT is next or previous day! */
   }