Constify seed and md2.
[openssl.git] / crypto / md2 / md2.h
index 15bd40c7b7bc4fbdb4d31ca0144a13fef970638d..a46120e7d418b2184a7e29827862e78a59600829 100644 (file)
@@ -63,6 +63,7 @@
 #ifdef OPENSSL_NO_MD2
 #error MD2 is disabled.
 #endif
+#include <stddef.h>
 
 #define MD2_DIGEST_LENGTH      16
 #define MD2_BLOCK              16
@@ -73,7 +74,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];