From ca2acec34af975945e4f77f17c60c8537facf76e Mon Sep 17 00:00:00 2001 From: Jon Simons Date: Sun, 7 Dec 2014 16:31:31 -0800 Subject: bignum: no-op make_string_bn_inplace for LIBGCRYPT Disable the 'make_string_bn_inplace' helper function for the LIBGCRYPT build, rather than using '#error' to fail the build completely. Signed-off-by: Jon Simons Reviewed-by: Andreas Schneider --- src/bignum.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bignum.c b/src/bignum.c index 39de2487..36bd140d 100644 --- a/src/bignum.c +++ b/src/bignum.c @@ -84,7 +84,9 @@ bignum make_string_bn(ssh_string string){ void make_string_bn_inplace(ssh_string string, bignum bnout) { unsigned int len = ssh_string_len(string); #ifdef HAVE_LIBGCRYPT - #error "unsupported" + /* XXX: FIXME as needed for LIBGCRYPT ECDSA codepaths. */ + (void) len; + (void) bnout; #elif defined HAVE_LIBCRYPTO bignum_bin2bn(string->data, len, bnout); #endif -- cgit