freebsd-ports/mail/opendkim/files/patch-libopendkim_dkim-canon.c
Matthias Fechner d32f47f828 Fixed problems with OpenSSL 1.1.1 and an error message regarding lua.
PR:		223568
Submitted by:	freebsd-ports@dan.me.uk
Reported by:	pi@FreeBSD.org
Reviewed by:	mfechner@FreeBSD.org
Approved by:	mentors (implicit)
2018-10-20 10:19:29 +00:00

11 lines
348 B
C

--- libopendkim/dkim-canon.c.orig 2015-05-11 03:56:13 UTC
+++ libopendkim/dkim-canon.c
@@ -388,7 +388,7 @@ dkim_canon_header_string(struct dkim_dstring *dstr, dk
}
/* skip all spaces before first word */
- while (*p != '\0' && DKIM_ISWSP(*p))
+ while (*p != '\0' && DKIM_ISLWSP(*p))
p++;
space = FALSE; /* just saw a space */