mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-01 06:31:42 +00:00
- (dtucker) [sshkey.c] ifdef out unused variable when compiling without
OPENSSL_HAS_ECC.
This commit is contained in:
parent
c8f610f6cc
commit
948a1774a7
@ -9,6 +9,8 @@
|
||||
http://www.25thandclement.com/~william/projects/streamlocal.html
|
||||
OK djm@ markus@
|
||||
- (djm) [regress/multiplex.sh] Not all netcat accept the -N option.
|
||||
- (dtucker) [sshkey.c] ifdef out unused variable when compiling without
|
||||
OPENSSL_HAS_ECC.
|
||||
|
||||
20140721
|
||||
- (dtucker) [cipher.c openbsd-compat/openssl-compat.h] Restore the bits
|
||||
|
4
sshkey.c
4
sshkey.c
@ -657,9 +657,9 @@ cert_compare(struct sshkey_cert *a, struct sshkey_cert *b)
|
||||
int
|
||||
sshkey_equal_public(const struct sshkey *a, const struct sshkey *b)
|
||||
{
|
||||
#ifdef WITH_OPENSSL
|
||||
#if defined(WITH_OPENSSL) && defined(OPENSSL_HAS_ECC)
|
||||
BN_CTX *bnctx;
|
||||
#endif /* WITH_OPENSSL */
|
||||
#endif /* WITH_OPENSSL && OPENSSL_HAS_ECC */
|
||||
|
||||
if (a == NULL || b == NULL ||
|
||||
sshkey_type_plain(a->type) != sshkey_type_plain(b->type))
|
||||
|
Loading…
Reference in New Issue
Block a user