[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] nmh uip/sendsbr.c ./ChangeLog
From: |
David Levine |
Subject: |
[Nmh-commits] nmh uip/sendsbr.c ./ChangeLog |
Date: |
Sat, 25 Feb 2006 14:14:06 +0000 |
CVSROOT: /sources/nmh
Module name: nmh
Branch:
Changes by: David Levine <address@hidden> 06/02/25 14:14:06
Modified files:
uip : sendsbr.c
. : ChangeLog
Log message:
* uip/sendsbr.c: replaced st_mtim with st_mtime, that's what
it should have been. Added #include of h/tws.h to pick up
dtime() prototype.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/nmh/uip/sendsbr.c.diff?tr1=1.10&tr2=1.11&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/nmh/nmh/ChangeLog.diff?tr1=1.238&tr2=1.239&r1=text&r2=text
Patches:
Index: nmh/ChangeLog
diff -u nmh/ChangeLog:1.238 nmh/ChangeLog:1.239
--- nmh/ChangeLog:1.238 Tue Feb 21 03:58:31 2006
+++ nmh/ChangeLog Sat Feb 25 14:14:06 2006
@@ -1,3 +1,9 @@
+2006-02-25 David Levine <address@hidden>
+
+ * uip/sendsbr.c: replaced st_mtim with st_mtime, that's what
+ it should have been. Added #include of h/tws.h to pick up
+ dtime() prototype.
+
2006-02-20 David Levine <address@hidden>
* h/mh.h, h/prototypes.h, uip/mhbuildsbr.c, uip/send.c,
Index: nmh/uip/sendsbr.c
diff -u nmh/uip/sendsbr.c:1.10 nmh/uip/sendsbr.c:1.11
--- nmh/uip/sendsbr.c:1.10 Tue Feb 21 03:58:31 2006
+++ nmh/uip/sendsbr.c Sat Feb 25 14:14:06 2006
@@ -2,7 +2,7 @@
/*
* sendsbr.c -- routines to help WhatNow/Send along
*
- * $Id: sendsbr.c,v 1.10 2006/02/21 03:58:31 levine Exp $
+ * $Id: sendsbr.c,v 1.11 2006/02/25 14:14:06 levine Exp $
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
@@ -15,6 +15,7 @@
#include <signal.h>
#include <fcntl.h>
#include <h/mime.h>
+#include <h/tws.h>
#include <h/utils.h>
#ifdef TIME_WITH_SYS_TIME
@@ -498,7 +499,7 @@
(void) fprintf (composition_file,
"#%s <>{attachment; modification-date=\"%s\"}",
content_type,
- dtime (&st.st_mtim, 0));
+ dtime (&st.st_mtime, 0));
break;
default:
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] nmh uip/sendsbr.c ./ChangeLog,
David Levine <=