common/crypto_openssl.c: fix build with libressl >= 3.5.0#522
Merged
bk138 merged 1 commit intoLibVNC:masterfrom May 12, 2022
ffontaine:master
Merged
common/crypto_openssl.c: fix build with libressl >= 3.5.0#522bk138 merged 1 commit intoLibVNC:masterfrom ffontaine:master
bk138 merged 1 commit intoLibVNC:masterfrom
ffontaine:master
Conversation
Fix the following build failure with libressl >= 3.5.0:
/nvmedata/autobuild/instance-26/output-1/build/libvncserver-0.9.13/common/crypto_openssl.c: In function 'dh_generate_keypair':
/nvmedata/autobuild/instance-26/output-1/build/libvncserver-0.9.13/common/crypto_openssl.c:149:7: error: dereferencing pointer to incomplete type 'DH' {aka 'struct dh_st'}
149 | dh->p = BN_bin2bn(prime, keylen, NULL);
| ^~
Fixes:
- http://autobuild.buildroot.org/results/49b3940b9d0432cb5fb0c5d22dfa017b18c6e233
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
orbea
added a commit
to orbea/libressl
that referenced
this pull request
Jul 5, 2022
Upstream-Commit: 97fbbd678b2012e64acddd523677bc55a177bc58 Upstream-PR: LibVNC/libvncserver#522 Signed-off-by: orbea <orbea@riseup.net>
gentoo-bot
pushed a commit
to gentoo/libressl
that referenced
this pull request
Jul 5, 2022
Upstream-Commit: 97fbbd678b2012e64acddd523677bc55a177bc58 Upstream-PR: LibVNC/libvncserver#522 Signed-off-by: orbea <orbea@riseup.net> Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix the following build failure with libressl >= 3.5.0:
Fixes:
Signed-off-by: Fabrice Fontaine fontaine.fabrice@gmail.com