git://git.exim.org
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8f129d
)
Fix build warning on 32-bit int platfowms. Bug 2678
author
Jeremy Harris
<jgh146exb@wizmail.org>
Sat, 26 Dec 2020 18:18:33 +0000
(18:18 +0000)
committer
Jeremy Harris
<jgh146exb@wizmail.org>
Tue, 12 Jan 2021 19:10:30 +0000
(19:10 +0000)
(cherry picked from commit
abca11df7f354c123b0ff8a9bfb89a669d7742d4
)
src/src/pdkim/pdkim.c
patch
|
blob
|
history
diff --git
a/src/src/pdkim/pdkim.c
b/src/src/pdkim/pdkim.c
index 3a6ca4e91b9955c726d9eb18243b830dde2e138b..f68324097083d73f06ffb93ae4b671b42f246eff 100644
(file)
--- a/
src/src/pdkim/pdkim.c
+++ b/
src/src/pdkim/pdkim.c
@@
-1324,7
+1324,8
@@
check_bare_ed25519_pubkey(pdkim_pubkey * p)
int excess = p->key.len - 32;
if (excess > 0)
{
- DEBUG(D_acl) debug_printf("DKIM: unexpected pubkey len %lu\n", p->key.len);
+ DEBUG(D_acl)
+ debug_printf("DKIM: unexpected pubkey len %lu\n", (unsigned long) p->key.len);
p->key.data += excess; p->key.len = 32;
}
}