summaryrefslogtreecommitdiff
path: root/crypto/md2
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-07-22 10:25:52 +0000
committerAndy Polyakov <appro@openssl.org>2004-07-22 10:25:52 +0000
commitd58caee734298d61b2ec119bfa31bc42a9d55480 (patch)
treec55b81c23ef07763dc6f79a3687af259647c5e2e /crypto/md2
parente39c2548f522a9293376a19fdbe466514a882d16 (diff)
downloadopenssl-new-d58caee734298d61b2ec119bfa31bc42a9d55480.tar.gz
EVP_Digest is size_t-fied, clean up test programs accordingly.
Diffstat (limited to 'crypto/md2')
-rw-r--r--crypto/md2/md2test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md2/md2test.c b/crypto/md2/md2test.c
index 13cbec4ab0..21b381c351 100644
--- a/crypto/md2/md2test.c
+++ b/crypto/md2/md2test.c
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
i=1;
while (*P != NULL)
{
- EVP_Digest((unsigned char *)*P,(unsigned long)strlen(*P),md,NULL,EVP_md2(), NULL);
+ EVP_Digest((unsigned char *)*P,strlen(*P),md,NULL,EVP_md2(), NULL);
p=pt(md);
if (strcmp(p,*R) != 0)
{