summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2022-02-09 11:57:50 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2022-02-09 11:57:50 +0000
commitceb25166f8da2ee3ebb1bb3d384ff6224f9621b2 (patch)
tree511a8711d33f5bdd1e4d9aac93eff8d31ba9ae7e
parent4323f3b093f2605b35c35776072b1d7d5598090c (diff)
DMARC: typo
Broken-by: 1ddb185540
-rw-r--r--src/src/dmarc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/dmarc.c b/src/src/dmarc.c
index b1b89511a..00aab2bee 100644
--- a/src/src/dmarc.c
+++ b/src/src/dmarc.c
@@ -58,7 +58,7 @@ dmarc_version_report(gstring * g)
{
return string_fmt_append(g, "Library version: dmarc: Compile: %d.%d.%d.%d\n",
(OPENDMARC_LIB_VERSION & 0xff000000) >> 24, (OPENDMARC_LIB_VERSION & 0x00ff0000) >> 16,
- (OPENDMARC_LIB_VERSION & 0x0000ff00) >> 8, OPENDMARC_LIB_VERSION & 0x000000ff));
+ (OPENDMARC_LIB_VERSION & 0x0000ff00) >> 8, OPENDMARC_LIB_VERSION & 0x000000ff);
}