mailgrep.patch 468 B

123456789101112131415
  1. --- src/date.c.orig Tue Aug 1 15:15:54 2000
  2. +++ src/date.c Mon Feb 19 12:20:57 2001
  3. @@ -193,9 +193,9 @@
  4. return 0;
  5. if (offset) {
  6. if (abs (offset) > 15)
  7. - result -= timezone + (offset / 100) * 60 * 60 + (offset % 100) * 60;
  8. + result -= /* timezone + */ (offset / 100) * 60 * 60 + (offset % 100) * 60;
  9. else
  10. - result -= timezone + offset * 60 * 60;
  11. + result -= /* timezone + */ offset * 60 * 60;
  12. }
  13. chomp (r);
  14. if (result_str)