mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-30 01:05:14 +02:00
- (djm) [sshbuf-getput-crypto.c] Fix compilation when OpenSSL lacks ECC
This commit is contained in:
parent
6d62784b89
commit
0c11f1ac36
@ -1,6 +1,7 @@
|
|||||||
20140822
|
20140822
|
||||||
- (djm) [configure.ac] include leading zero characters in OpenSSL version
|
- (djm) [configure.ac] include leading zero characters in OpenSSL version
|
||||||
number; fixes test for unsupported versions
|
number; fixes test for unsupported versions
|
||||||
|
- (djm) [sshbuf-getput-crypto.c] Fix compilation when OpenSSL lacks ECC
|
||||||
|
|
||||||
20140821
|
20140821
|
||||||
- (djm) [Makefile.in] fix reference to libtest_helper.a in sshkey test too.
|
- (djm) [Makefile.in] fix reference to libtest_helper.a in sshkey test too.
|
||||||
|
@ -24,7 +24,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <openssl/bn.h>
|
#include <openssl/bn.h>
|
||||||
#include <openssl/ec.h>
|
#ifdef OPENSSL_HAS_ECC
|
||||||
|
# include <openssl/ec.h>
|
||||||
|
#endif /* OPENSSL_HAS_ECC */
|
||||||
|
|
||||||
#include "ssherr.h"
|
#include "ssherr.h"
|
||||||
#include "sshbuf.h"
|
#include "sshbuf.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user