mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
7d8c1f3a9b
- Staging - Use OPTIONS where appropriate - Rename old-style patch files
12 lines
328 B
C++
12 lines
328 B
C++
--- src/libirc/Parser.cpp.orig Sat May 31 09:25:44 2003
|
|
+++ src/libirc/Parser.cpp Mon Jul 7 00:37:53 2003
|
|
@@ -681,7 +681,7 @@
|
|
ss >> time;
|
|
|
|
long date = std::atol(time.c_str());
|
|
- time = std::ctime(&date);
|
|
+ time = std::ctime((const time_t *)&date);
|
|
|
|
Channel *c = _conn->findChannel(chan);
|
|
assert(c);
|