aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/md2/md2.h2
-rw-r--r--crypto/md5/md5.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md2/md2.h b/crypto/md2/md2.h
index 15bd40c7b7..5b71855cb2 100644
--- a/crypto/md2/md2.h
+++ b/crypto/md2/md2.h
@@ -73,7 +73,7 @@ extern "C" {
typedef struct MD2state_st
{
- usigned int num;
+ unsigned int num;
unsigned char data[MD2_BLOCK];
MD2_INT cksm[MD2_BLOCK];
MD2_INT state[MD2_BLOCK];
diff --git a/crypto/md5/md5.h b/crypto/md5/md5.h
index a58940e547..6d283fe9da 100644
--- a/crypto/md5/md5.h
+++ b/crypto/md5/md5.h
@@ -101,7 +101,7 @@ typedef struct MD5state_st
MD5_LONG A,B,C,D;
MD5_LONG Nl,Nh;
MD5_LONG data[MD5_LBLOCK];
- unigned int num;
+ unsigned int num;
} MD5_CTX;
int MD5_Init(MD5_CTX *c);