projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b74cc07
)
Declare the static BIGNUM "BN_value_one()" more carefully.
author
Geoff Thorpe
<geoff@openssl.org>
Mon, 1 Dec 2003 23:13:17 +0000
(23:13 +0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Mon, 1 Dec 2003 23:13:17 +0000
(23:13 +0000)
crypto/bn/bn_lib.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_lib.c
b/crypto/bn/bn_lib.c
index b499292884ad6b51f9744a4ac1d27880be2f0d5d..3ecf83ddf28447a538835d79288aa664178efcad 100644
(file)
--- a/
crypto/bn/bn_lib.c
+++ b/
crypto/bn/bn_lib.c
@@
-131,7
+131,7
@@
int BN_get_params(int which)
const BIGNUM *BN_value_one(void)
{
static BN_ULONG data_one=1L;
- static BIGNUM const_one={&data_one,1,1,0};
+ static BIGNUM const_one={&data_one,1,1,0
,BN_FLG_STATIC_DATA
};
return(&const_one);
}