summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-01-22 17:35:08 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2017-01-22 17:37:05 +0000
commiteea190173538a3e71a87f174baa190cb22e0e8fb (patch)
tree1261c57a8f5767f197ddcf5ed7dc03af8a4504ea /src
parent1137f3a6938882cc81a1fcd7dc15530e8fae9e32 (diff)
DKIM: permit verify of sig blocks that sign other sig blocks. Bug 2014
Diffstat (limited to 'src')
-rw-r--r--src/src/pdkim/pdkim.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/src/pdkim/pdkim.c b/src/src/pdkim/pdkim.c
index 4309675e6..a77dd5792 100644
--- a/src/src/pdkim/pdkim.c
+++ b/src/src/pdkim/pdkim.c
@@ -991,9 +991,8 @@ else
"PDKIM <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n");
}
- /* every other header is stored for signature verification */
- else
- ctx->headers = pdkim_prepend_stringlist(ctx->headers, ctx->cur_header);
+ /* all headers are stored for signature verification */
+ ctx->headers = pdkim_prepend_stringlist(ctx->headers, ctx->cur_header);
}
BAIL: