summaryrefslogtreecommitdiffstats
path: root/crypto/mdc2/mdc2dgst.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-07-25 19:10:43 +0000
committerAndy Polyakov <appro@openssl.org>2004-07-25 19:10:43 +0000
commit16ab8a93bc96cacc1b5376cc084f70122368ee1f (patch)
tree0ab78377030cffb4017aa2f54bc6ad83d801c24d /crypto/mdc2/mdc2dgst.c
parentc88f8f76b54d9d27f3c29645616d9ec427ee41c4 (diff)
Minor 64-bit md32_common.h update and minor unsignification of digests.
Diffstat (limited to 'crypto/mdc2/mdc2dgst.c')
-rw-r--r--crypto/mdc2/mdc2dgst.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/mdc2/mdc2dgst.c b/crypto/mdc2/mdc2dgst.c
index aa9ba0ee6b..4aa406edc3 100644
--- a/crypto/mdc2/mdc2dgst.c
+++ b/crypto/mdc2/mdc2dgst.c
@@ -160,7 +160,8 @@ static void mdc2_body(MDC2_CTX *c, const unsigned char *in, size_t len)
int MDC2_Final(unsigned char *md, MDC2_CTX *c)
{
- int i,j;
+ unsigned int i;
+ int j;
i=c->num;
j=c->pad_type;