From 6aac6c7a814ee32d136af1e23da6a56ed2192b4e Mon Sep 17 00:00:00 2001 From: Steve Price Date: Sun, 20 Feb 2000 20:59:20 +0000 Subject: The one and only argument to gmtime(3) is a time_t*. This fixes the build problems on the Alpha. --- comms/plp/files/patch-af | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 comms/plp/files/patch-af (limited to 'comms/plp/files/patch-af') diff --git a/comms/plp/files/patch-af b/comms/plp/files/patch-af new file mode 100644 index 000000000000..e42b857c7815 --- /dev/null +++ b/comms/plp/files/patch-af @@ -0,0 +1,11 @@ +--- rfsv/rfsv16.cc.orig Sat Feb 19 21:10:24 2000 ++++ rfsv/rfsv16.cc Sat Feb 19 21:11:09 2000 +@@ -134,7 +134,7 @@ + { + char dateBuff[100]; + struct tm *t; +- t = gmtime(&date); ++ t = gmtime((time_t *)&date); + strftime(dateBuff, 100, "%d/%m/%y %H:%M:%S", t); + cout << " " << dateBuff; + } -- cgit v1.2.3