svn commit: r308028 - head/mail/altermime/files

Ion-Mihai Tetcu itetcu at FreeBSD.org
Fri Nov 30 22:44:51 UTC 2012


Author: itetcu
Date: Fri Nov 30 22:44:50 2012
New Revision: 308028
URL: http://svnweb.freebsd.org/changeset/ports/308028

Log:
  Fix build with clang.
  
  PR:		172216
  Submitted by:	Miklos Magyari
  Feature safe:	yes

Added:
  head/mail/altermime/files/
  head/mail/altermime/files/patch-ffget.c   (contents, props changed)

Added: head/mail/altermime/files/patch-ffget.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/altermime/files/patch-ffget.c	Fri Nov 30 22:44:50 2012	(r308028)
@@ -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");


More information about the svn-ports-all mailing list