(mbx_delimit_begin): Also write the current time.

This commit is contained in:
Glenn Morris 2009-02-11 03:59:52 +00:00
parent 294fa707e0
commit d228a23c4a
2 changed files with 16 additions and 1 deletions

View file

@ -683,6 +683,8 @@ xmalloc (size)
#include <winsock.h>
#endif
#include <pwd.h>
#include <string.h>
#include <time.h>
#define NOTOK (-1)
#define OK 0
@ -923,7 +925,16 @@ int
mbx_delimit_begin (mbf)
FILE *mbf;
{
if (fputs ("From movemail\n", mbf) == EOF)
time_t now;
struct tm *ltime;
char fromline[40] = "From movemail ";
now = time (NULL);
ltime = localtime (&now);
strcat (fromline, asctime (ltime));
if (fputs (fromline, mbf) == EOF)
return (NOTOK);
return (OK);
}