Skip to content

Commit

Permalink
LIBOPENDKIM: Fix bug #226: Deal with header fields that are
Browse files Browse the repository at this point in the history
wrpaped before there's any content.  Reported by
Alessandro Vesely.
  • Loading branch information
Murray S. Kucherawy committed Apr 29, 2015
1 parent 11580bb commit a9f1673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libopendkim/dkim-canon.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ dkim_canon_header_string(struct dkim_dstring *dstr, dkim_canon_t canon,
if (isascii(*p))
{
/* discard spaces */
if (DKIM_ISWSP(*p))
if (DKIM_ISLWSP(*p))
continue;

/* convert to lowercase */
Expand Down

0 comments on commit a9f1673

Please sign in to comment.