diff options
author | Andy Polyakov <appro@openssl.org> | 2004-07-22 10:25:52 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2004-07-22 10:25:52 +0000 |
commit | d58caee734298d61b2ec119bfa31bc42a9d55480 (patch) | |
tree | c55b81c23ef07763dc6f79a3687af259647c5e2e /crypto/md2 | |
parent | e39c2548f522a9293376a19fdbe466514a882d16 (diff) | |
download | openssl-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.c | 2 |
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) { |