diff options
Diffstat (limited to 'mail/ftrack/files/patch-src-parsetpl.cpp')
-rw-r--r-- | mail/ftrack/files/patch-src-parsetpl.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/ftrack/files/patch-src-parsetpl.cpp b/mail/ftrack/files/patch-src-parsetpl.cpp new file mode 100644 index 000000000000..052f2623c600 --- /dev/null +++ b/mail/ftrack/files/patch-src-parsetpl.cpp @@ -0,0 +1,11 @@ +--- 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'; + } + |