int fd;
struct block0 b0;
time_t x = (time_t)0;
+ char *p;
#ifdef UNIX
char_u uname[B0_UNAME_SIZE];
#endif
#endif
MSG_PUTS(_(" dated: "));
x = st.st_mtime; /* Manx C can't do &st.st_mtime */
- MSG_PUTS(ctime(&x)); /* includes '\n' */
-
+ p = ctime(&x); /* includes '\n' */
+ if (p == NULL)
+ MSG_PUTS("(invalid)\n");
+ else
+ MSG_PUTS(p);
}
/*
{
struct stat st;
time_t x, sx;
+ char *p;
++no_wait_return;
(void)EMSG(_("E325: ATTENTION"));
{
MSG_PUTS(_(" dated: "));
x = st.st_mtime; /* Manx C can't do &st.st_mtime */
- MSG_PUTS(ctime(&x));
+ p = ctime(&x); /* includes '\n' */
+ if (p == NULL)
+ MSG_PUTS("(invalid)\n");
+ else
+ MSG_PUTS(p);
if (sx != 0 && x > sx)
MSG_PUTS(_(" NEWER than swap file!\n"));
}