+Mon Sep 13 20:25:21 1999 Doug Morris <doug@mhost.com>
+
+ * added explicit cast to long from time_t for tclock in
+ post.c.
+
+ * Commented out #ifdefs for <sys/ioctl.h> in termsbr.c since
+ it's needed for ioctl() anyway. This prevents a warning about
+ implicit definition of ioctl().
+
Sun Sep 12 15:50:34 1999 Doug Morris <doug@mhost.com>
* updated Makefile.in so it recognized COMPLETION-TCSH and
Sun Sep 12 09:19:27 1999 Doug Morris <doug@mhost.com>
* commented out _cleanup() in mf.c because it's the only
- location in all of the source code where it exists.
+ location in all of the source code where it exists. It was
+ preventing compilation on at least linux.
* Added check for <db1/ndbm.h> which is the new location where
linux systems appear to be stuffing this header file.
fprintf (out, "Date: %s\n", dtime (&tclock, 0));
if (msgid)
fprintf (out, "Message-ID: <%d.%ld@%s>\n",
- (int) getpid (), tclock, LocalName ());
+ (int) getpid (), (long) tclock, LocalName ());
if (msgflags & MFRM)
fprintf (out, "Sender: %s\n", from);
else
fprintf (out, "Resent-Date: %s\n", dtime (&tclock, 0));
if (msgid)
fprintf (out, "Resent-Message-ID: <%d.%ld@%s>\n",
- (int) getpid (), tclock, LocalName ());
+ (int) getpid (), (long) tclock, LocalName ());
if (msgflags & MRFM)
fprintf (out, "Resent-Sender: %s\n", from);
else
fprintf (out, "Date: %s\n", dtime (&tclock, 0));
if (msgid)
fprintf (out, "Message-ID: <%d.%ld@%s>\n",
- (int) getpid (), tclock, LocalName ());
+ (int) getpid (), (long) tclock, LocalName ());
fprintf (out, "From: %s\n", signature);
if (subject)
fprintf (out, "Subject: %s", subject);