notice changes taking less than one second.
-2007-08-28 10:43 -0700 Brendan Cully <brendan@kublai.com> (3cc89213ebb7)
+2007-08-28 11:33 -0700 Brendan Cully <brendan@kublai.com> (3f8829e739e9)
+
+ * init.h: Insert .pp after .de to fix man page generation (closes
+ #2940)
+
+ * imap/imap.c: Check subscriptions after any authentication,
+ rather than after fist connection (closes #2908)
* dotlock.c, lib.h, mutt.h: Use limits.h for PATH_MAX instead of
posix1_lim.h (closes #2525)
goto bail;
}
- if (stat (tmp, &sb) == 0)
- mtime = sb.st_mtime;
+ if ((rc = stat (tmp, &sb)) == -1)
+ {
+ mutt_error (_("Can't stat %s: %s"), tmp, strerror (errno));
+ goto bail;
+ }
/*
* 2002-09-05 me@sigpipe.org
goto bail;
}
+ mtime = mutt_decrease_mtime (tmp, &sb);
+
mutt_edit_file (NONULL(Editor), tmp);
if ((rc = stat (tmp, &sb)) == -1)