aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-02 12:47:27 +0000
committerlloyd <[email protected]>2010-11-02 12:47:27 +0000
commitef0d938e243281af289820a8757d42948303a17f (patch)
treed59482d737b114568d76fed4e6be1ebaaad0b969 /src/math
parent4a361f699573ed3ff128ecc9c654863cd55aaa79 (diff)
Compile fix
Diffstat (limited to 'src/math')
-rw-r--r--src/math/numbertheory/curve_gfp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/numbertheory/curve_gfp.h b/src/math/numbertheory/curve_gfp.h
index 6c1d220fd..1ab803ec9 100644
--- a/src/math/numbertheory/curve_gfp.h
+++ b/src/math/numbertheory/curve_gfp.h
@@ -34,7 +34,7 @@ class BOTAN_DLL CurveGFp
* @param b second coefficient
*/
CurveGFp(const BigInt& p, const BigInt& a, const BigInt& b) :
- p(p_in), a(a_in), b(b_in), reducer_p(p)
+ p(p), a(a), b(b), reducer_p(p)
{
r = 1;
r <<= p.sig_words() * BOTAN_MP_WORD_BITS;