app-crypt/signify: Fix call to undeclared function b64_pton#32097
app-crypt/signify: Fix call to undeclared function b64_pton#32097listout wants to merge 1 commit intogentoo:masterfrom
Conversation
Upstream PR: aperezdc/signify#43 Closes: https://bugs.gentoo.org/894354 Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Pull Request assignmentSubmitter: @listout app-crypt/signify: Linked bugsBugs linked: 894354 In order to force reassignment and/or bug reference scan, please append Docs: Code of Conduct ● Copyright policy (expl.) ● Devmanual ● GitHub PRs ● Proxy-maint guide |
Pull request CI reportReport generated at: 2023-07-29 20:35 UTC There are existing issues already. Please look into the report to make sure none of them affect the packages in question: |
| +++ b/base64.h | ||
| @@ -0,0 +1,2 @@ | ||
| +int b64_pton(char const *, unsigned char *, size_t); | ||
| +int b64_ntop(unsigned char const *, size_t , char *, size_t); |
There was a problem hiding this comment.
tiny niggle: the declaration uses size_t which is not a built-in time. so this header actually requires a #include <stddef>
Upstream PR: aperezdc/signify#43
Closes: https://bugs.gentoo.org/894354