diff options
author | steve <steve@FreeBSD.org> | 2000-02-21 05:00:08 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-02-21 05:00:08 +0800 |
commit | c5cb529f98d36ffba0586a6677f479c76314e6e0 (patch) | |
tree | 6f17ddaec5f150b59613d2d809fa79d7b42b60ba /net/pmf | |
parent | 252a44caff264293745336b8226090c7f61046c6 (diff) | |
download | freebsd-ports-gnome-c5cb529f98d36ffba0586a6677f479c76314e6e0.tar.gz freebsd-ports-gnome-c5cb529f98d36ffba0586a6677f479c76314e6e0.tar.zst freebsd-ports-gnome-c5cb529f98d36ffba0586a6677f479c76314e6e0.zip |
time(3) returns a time_t and not a long.
Diffstat (limited to 'net/pmf')
-rw-r--r-- | net/pmf/files/patch-af | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/pmf/files/patch-af b/net/pmf/files/patch-af new file mode 100644 index 000000000000..ad5d613e1041 --- /dev/null +++ b/net/pmf/files/patch-af @@ -0,0 +1,11 @@ +--- misc.c.orig Sat Feb 19 21:56:34 2000 ++++ misc.c Sat Feb 19 21:56:43 2000 +@@ -16,7 +16,7 @@ + #include "config.h" + #include "globals.h" + +-extern long time(); ++extern time_t time(); + extern char *ctime(); + + /*---------------------------------------------------------------------------*/ |