From 899237ccc0e90a23ae8c813d700c914bb934d583 Mon Sep 17 00:00:00 2001 From: Ion-Mihai Tetcu Date: Fri, 30 Nov 2012 22:44:50 +0000 Subject: [PATCH] Fix build with clang. PR: 172216 Submitted by: Miklos Magyari Feature safe: yes --- mail/altermime/files/patch-ffget.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mail/altermime/files/patch-ffget.c diff --git a/mail/altermime/files/patch-ffget.c b/mail/altermime/files/patch-ffget.c new file mode 100644 index 000000000000..39cfb2edf0b9 --- /dev/null +++ b/mail/altermime/files/patch-ffget.c @@ -0,0 +1,11 @@ +--- ./ffget.c.orig 2008-12-13 03:13:09.000000000 +0200 ++++ ./ffget.c 2012-12-01 00:41:29.000000000 +0200 +@@ -550,7 +550,7 @@ + // if we have another \r after it, in which case, we + // turn on SINGLE_DELIMETER_MODE. + +- if ( (*crlfpos == '\r') ) ++ if (*crlfpos == '\r') + { + f->linebreak = FFGET_LINEBREAK_CR; + snprintf(f->lastbreak,sizeof(f->lastbreak),"\r");