[svn] Remove char/unsigned char warnings emitted by Sun cc.

This commit is contained in:
hniksic
2001-11-29 10:48:43 -08:00
parent fb98d1e4b0
commit b65661a879
6 changed files with 21 additions and 16 deletions

View File

@@ -81,7 +81,7 @@ gen_md5_update (unsigned const char *buffer, int len, gen_md5_context *ctx)
#endif
#ifdef HAVE_SOLARIS_MD5
MD5Update (ctx_imp, buffer, len);
MD5Update (ctx_imp, (unsigned char *)buffer, len);
#endif
#ifdef HAVE_OPENSSL_MD5