From 398bb0bf9bbe3f1baf53c2b5b3d6546e902a11b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 13 Jan 2006 08:27:50 +0000 Subject: [PATCH] BN_get_negative was really named BN_is_negative, a comment confused me. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16536 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/bn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/des/bn.h b/lib/des/bn.h index 8f946b199..43692ec97 100644 --- a/lib/des/bn.h +++ b/lib/des/bn.h @@ -50,7 +50,7 @@ #define BN_cmp hc_BN_cmp #define BN_dup hc_BN_dup #define BN_free hc_BN_free -#define BN_get_negative hc_BN_get_negative +#define BN_is_negative hc_BN_is_negative #define BN_get_word hc_BN_get_word #define BN_hex2bn hc_BN_hex2bn #define BN_is_bit_set hc_BN_is_bit_set @@ -97,7 +97,7 @@ int BN_num_bytes(const BIGNUM *); int BN_cmp(const BIGNUM *, const BIGNUM *); void BN_set_negative(BIGNUM *, int); -int BN_get_negative(BIGNUM *); +int BN_is_negative(BIGNUM *); int BN_is_bit_set(const BIGNUM *, int); int BN_set_bit(BIGNUM *, int);