diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-01 04:59:35 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-01 04:59:35 +0000 |
commit | 0f63da27219018334252805d10739b9ae0b5620d (patch) | |
tree | 0470873d6a8a0c632b9238be6d1ab9dd86adeee4 | |
parent | dafa63085db8f8768312f5fc82c57af55d5e6b69 (diff) | |
download | ports-0f63da27219018334252805d10739b9ae0b5620d.tar.gz ports-0f63da27219018334252805d10739b9ae0b5620d.zip |
Notes
-rw-r--r-- | mail/arrow/files/patch-ae | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/arrow/files/patch-ae b/mail/arrow/files/patch-ae index 58308bdbd32f..f4d4e2fed7dd 100644 --- a/mail/arrow/files/patch-ae +++ b/mail/arrow/files/patch-ae @@ -1,5 +1,5 @@ ---- programs/arrow/code/SMTPMessage.cc.orig Wed Jun 14 14:15:43 2000 -+++ programs/arrow/code/SMTPMessage.cc Wed Jun 14 14:37:44 2000 +--- programs/arrow/code/SMTPMessage.cc.orig Fri Sep 24 15:22:05 1999 ++++ programs/arrow/code/SMTPMessage.cc Wed Aug 1 01:17:26 2001 @@ -42,7 +42,7 @@ #include <ace/LSOCK_Connector.h> #include <ace/LSOCK_Stream.h> @@ -25,7 +25,7 @@ + struct timezone tz; + + gettimeofday(&t, &tz); -+ JString date(ctime(&(t.tv_sec))); ++ JString date(ctime((const time_t *) &(t.tv_sec))); + +/* END of ftime replacement */ + |