diff options
author | steve <steve@FreeBSD.org> | 1999-06-22 16:52:42 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-22 16:52:42 +0000 |
commit | eeef29afe4afddef6b85cf869ff75f8c7440c104 (patch) | |
tree | d39c17dbb2bc39d6615c5e7d28c806cef81b3df6 /print | |
parent | cc13798ee52ee006c7b203f57c8965bdf95cb16e (diff) | |
download | FreeBSD-ports-eeef29afe4afddef6b85cf869ff75f8c7440c104.zip FreeBSD-ports-eeef29afe4afddef6b85cf869ff75f8c7440c104.tar.gz |
Use time_t instead of long so this builds on the Alpha.
Diffstat (limited to 'print')
-rw-r--r-- | print/mp-letter/files/patch-ae | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/print/mp-letter/files/patch-ae b/print/mp-letter/files/patch-ae new file mode 100644 index 0000000..ba5ca7c --- /dev/null +++ b/print/mp-letter/files/patch-ae @@ -0,0 +1,11 @@ +--- print.cc.orig Sat Jun 19 18:04:15 1999 ++++ print.cc Sat Jun 19 18:04:57 1999 +@@ -33,7 +33,7 @@ + { + char *ptr ; // Pointer to current time or date string. + int len ; +- long clock ; // Used by the localtime function call. ++ time_t clock ; // Used by the localtime function call. + struct stat status ; // Stat(2) information from current file (-modtime). + struct tm *tm ; // Used by the localtime and asctime calls. + char *timenow ; // Used to set TimeNow field with users name. |