summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 14:45:02 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 14:45:02 +0000
commitdf82f5c85c5443d96cdb6c0d61ff4ffe28965929 (patch)
tree7b070959b52bd157eaa665008a05bee01f110d2f /crypto/bn
parent46e8ddaf642be328eff89fb57a4229742508e81f (diff)
Fix typos in error codes.
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn.err2
-rw-r--r--crypto/bn/bn.org2
-rw-r--r--crypto/bn/bn_blind.c6
-rw-r--r--crypto/bn/bn_err.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/crypto/bn/bn.err b/crypto/bn/bn.err
index ba51ca93b1..a3e0133d7e 100644
--- a/crypto/bn/bn.err
+++ b/crypto/bn/bn.err
@@ -28,5 +28,5 @@
#define BN_R_ENCODING_ERROR 104
#define BN_R_EXPAND_ON_STATIC_BIGNUM_DATA 105
#define BN_R_INVALID_LENGTH 106
-#define BN_R_NOT_INITALISED 107
+#define BN_R_NOT_INITIALIZED 107
#define BN_R_NO_INVERSE 108
diff --git a/crypto/bn/bn.org b/crypto/bn/bn.org
index d26de6093f..393fae5a64 100644
--- a/crypto/bn/bn.org
+++ b/crypto/bn/bn.org
@@ -596,7 +596,7 @@ int BN_div_recp();
#define BN_R_ENCODING_ERROR 104
#define BN_R_EXPAND_ON_STATIC_BIGNUM_DATA 105
#define BN_R_INVALID_LENGTH 106
-#define BN_R_NOT_INITALISED 107
+#define BN_R_NOT_INITIALIZED 107
#define BN_R_NO_INVERSE 108
#ifdef __cplusplus
diff --git a/crypto/bn/bn_blind.c b/crypto/bn/bn_blind.c
index c247f71c8a..e9b39430e1 100644
--- a/crypto/bn/bn_blind.c
+++ b/crypto/bn/bn_blind.c
@@ -106,7 +106,7 @@ BN_CTX *ctx;
if ((b->A == NULL) || (b->Ai == NULL))
{
- BNerr(BN_F_BN_BLINDING_UPDATE,BN_R_NOT_INITALISED);
+ BNerr(BN_F_BN_BLINDING_UPDATE,BN_R_NOT_INITIALIZED);
goto err;
}
@@ -127,7 +127,7 @@ BN_CTX *ctx;
if ((b->A == NULL) || (b->Ai == NULL))
{
- BNerr(BN_F_BN_BLINDING_CONVERT,BN_R_NOT_INITALISED);
+ BNerr(BN_F_BN_BLINDING_CONVERT,BN_R_NOT_INITIALIZED);
return(0);
}
return(BN_mod_mul(n,n,b->A,b->mod,ctx));
@@ -143,7 +143,7 @@ BN_CTX *ctx;
bn_check_top(n);
if ((b->A == NULL) || (b->Ai == NULL))
{
- BNerr(BN_F_BN_BLINDING_INVERT,BN_R_NOT_INITALISED);
+ BNerr(BN_F_BN_BLINDING_INVERT,BN_R_NOT_INITIALIZED);
return(0);
}
if ((ret=BN_mod_mul(n,n,b->Ai,b->mod,ctx)) >= 0)
diff --git a/crypto/bn/bn_err.c b/crypto/bn/bn_err.c
index 4c29c1ac55..626502a0e3 100644
--- a/crypto/bn/bn_err.c
+++ b/crypto/bn/bn_err.c
@@ -91,7 +91,7 @@ static ERR_STRING_DATA BN_str_reasons[]=
{BN_R_ENCODING_ERROR ,"encoding error"},
{BN_R_EXPAND_ON_STATIC_BIGNUM_DATA ,"expand on static bignum data"},
{BN_R_INVALID_LENGTH ,"invalid length"},
-{BN_R_NOT_INITALISED ,"not initalised"},
+{BN_R_NOT_INITIALIZED ,"not initialized"},
{BN_R_NO_INVERSE ,"no inverse"},
{0,NULL},
};