diff options
author | Steve Price <steve@FreeBSD.org> | 2000-02-20 21:00:08 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-02-20 21:00:08 +0000 |
commit | 8d40b7b2deb381e03eb315dab1a141a80bcbe19f (patch) | |
tree | 88af581ff5c2321eddde30d2a0ccd879354e192e | |
parent | The one and only argument to gmtime(3) is a time_t*. This fixes the build (diff) |
time(3) returns a time_t and not a long.
Notes
Notes:
svn path=/head/; revision=26060
-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(); + + /*---------------------------------------------------------------------------*/ |