summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-03-23 16:45:03 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-03-23 16:45:03 +0000
commit3d0a6e0fcf175e8416f344939b60c918c0f0f418 (patch)
tree8e5599da0d05bd2ce4ec4bfebca5f57f8202fd30
parent0719afe27105e35ad40805dabb66dbbcb44dab52 (diff)
ARC: For signing, accept A-R header lacking ARC info as equivalent to "none"
-rw-r--r--src/src/arc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/arc.c b/src/src/arc.c
index a0e2184bd..f4ae096bc 100644
--- a/src/src/arc.c
+++ b/src/src/arc.c
@@ -1375,7 +1375,7 @@ while ((methodspec = string_nextinlist(&resinfo, &sep, NULL, 0)))
(c = *s) && c != ';' && c != ' ' && c != '\r' && c != '\n'; ) s++;
return string_copyn(methodspec, s - methodspec);
}
-return NULL;
+return US"none";
}