From: Ken Hornstein Date: Wed, 26 Feb 2014 02:30:52 +0000 (-0500) Subject: Make sure we include space in the list of characters we need to encode in X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/79f7ee461078bd837632b2ca9fdf94ab4a080a36?ds=sidebyside;hp=e38cc16e06bbbd80a0fc02585e736fbc3dee7221 Make sure we include space in the list of characters we need to encode in a parameter line. --- diff --git a/h/mime.h b/h/mime.h index fad1cf88..92d6462a 100644 --- a/h/mime.h +++ b/h/mime.h @@ -46,7 +46,8 @@ #define isparamencode(c) (!isascii((unsigned char) c) || \ iscntrl((unsigned char) c) || istspecial(c) || \ - (c) == '*' || (c) == '\'' || (c) == '%') + (c) == ' ' || (c) == '*' || (c) == '\'' || \ + (c) == '%') #define MAXTEXTPERLN 78 #define MAXLONGLINE 998