BN_get_negative was really named BN_is_negative, a comment confused me.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16537 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-01-13 08:37:58 +00:00
parent 398bb0bf9b
commit 33b75d6802

View File

@@ -232,7 +232,7 @@ BN_set_negative(BIGNUM *bn, int flag)
}
int
BN_get_negative(BIGNUM *bn)
BN_is_negative(BIGNUM *bn)
{
return ((heim_integer *)bn)->negative ? 1 : 0;
}