1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/mail/ftrack/files/patch-src-parsetpl.cpp
Max Khon 4095d64e48 - Unbreak on RELENG_5/6
- Remove dependency on gcc 2.95 assuming that support for gcc 2.7.2
is dropped long time ago
- Bump PORTREVISION

Approved by:	portmgr, MAINTAINER
2005-08-19 13:01:21 +00:00

12 lines
287 B
C++

--- src/parsetpl.cpp.orig Fri Aug 19 17:49:03 2005
+++ src/parsetpl.cpp Fri Aug 19 17:50:18 2005
@@ -880,7 +880,7 @@
// First - replace all \r to \n
- while ((tmt = strchr(Body,'\r')) != NULL) {
+ while ((tmt = strchr((char *) Body,'\r')) != NULL) {
*tmt = '\n';
}