diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-04-24 09:36:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:04:15 -0500 |
commit | 0eddf14b307e905663b95296aa695a10d3fb90f7 (patch) | |
tree | 47048c771464eeae7d38cd44ff4584544452f96e /source4/lib/crypto/md5.c | |
parent | e26eea97872f856d35463834d42b86e58b144f58 (diff) | |
download | samba-0eddf14b307e905663b95296aa695a10d3fb90f7.tar.gz samba-0eddf14b307e905663b95296aa695a10d3fb90f7.tar.bz2 samba-0eddf14b307e905663b95296aa695a10d3fb90f7.zip |
r15191: Avoid uint_t as it's not standard.
(This used to be commit 7af59357b94e3819415b3a9257be0ced745ce130)
Diffstat (limited to 'source4/lib/crypto/md5.c')
-rw-r--r-- | source4/lib/crypto/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/crypto/md5.c b/source4/lib/crypto/md5.c index b607e93842..584c46ef2d 100644 --- a/source4/lib/crypto/md5.c +++ b/source4/lib/crypto/md5.c @@ -58,7 +58,7 @@ _PUBLIC_ void MD5Init(struct MD5Context *ctx) * Update context to reflect the concatenation of another buffer full * of bytes. */ -_PUBLIC_ void MD5Update(struct MD5Context *ctx, const uint8_t *buf, uint_t len) +_PUBLIC_ void MD5Update(struct MD5Context *ctx, const uint8_t *buf, size_t len) { register uint32_t t; |