diff options
author | lioux <lioux@FreeBSD.org> | 2001-08-01 04:59:35 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-08-01 04:59:35 +0000 |
commit | e66a2a17216b4b94c69b1c52ff6a0eaa079471e9 (patch) | |
tree | 70d9015b87345ef1c31ff0fd4dc3079b28249fc2 /mail/arrow | |
parent | 0d5988b813aaa78e5458cf8f85b582294a880bd2 (diff) | |
download | FreeBSD-ports-e66a2a17216b4b94c69b1c52ff6a0eaa079471e9.zip FreeBSD-ports-e66a2a17216b4b94c69b1c52ff6a0eaa079471e9.tar.gz |
Add a minimal odd patch to fix complains on -current cluster bento
Submitted by: bento
Reviewed by: peter, will,
IRC bsdmike <47d71ad6e4@HSE-London-ppp207327.sympatico.ca>,
IRC cmc <chris@adsl-208-191-149-190.dsl.hstntx.swbell.net>,
IRC jake_ <jake@k6.locore.ca>
Diffstat (limited to 'mail/arrow')
-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 58308bd..f4d4e2f 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 */ + |