1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/comms/plp/files/patch-af

12 lines
301 B
Plaintext
Raw Normal View History

--- 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;
}