diff options
author | Damien Miller <djm@mindrot.org> | 2014-08-26 08:37:47 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-08-26 08:37:47 +1000 |
commit | ed126de8ee04c66640a0ea2697c4aaf36801f100 (patch) | |
tree | fa2931646ef5938c8f99e7010a485626a866a254 /bufec.c | |
parent | 9c1dede005746864a4fdb36a7cdf6c51296ca909 (diff) |
- (djm) [bufec.c] Skip this file on !ECC OpenSSL
Diffstat (limited to 'bufec.c')
-rw-r--r-- | bufec.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,8 @@ | |||
26 | #include "log.h" | 26 | #include "log.h" |
27 | #include "ssherr.h" | 27 | #include "ssherr.h" |
28 | 28 | ||
29 | #ifdef OPENSSL_HAS_ECC | ||
30 | |||
29 | int | 31 | int |
30 | buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, | 32 | buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, |
31 | const EC_POINT *point) | 33 | const EC_POINT *point) |
@@ -68,4 +70,5 @@ buffer_get_ecpoint(Buffer *buffer, const EC_GROUP *curve, | |||
68 | fatal("%s: buffer error", __func__); | 70 | fatal("%s: buffer error", __func__); |
69 | } | 71 | } |
70 | 72 | ||
73 | #endif /* OPENSSL_HAS_ECC */ | ||
71 | 74 | ||