summaryrefslogtreecommitdiff
path: root/lib/md5.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-03-03 08:55:26 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-06-07 08:47:49 -0400
commitf2bce9a5b39e9fcd3da3e338ef197fa5109a5010 (patch)
treeff4a122377f67330bb9f0650b759c4d7e8217482 /lib/md5.c
parent8ecd32669320500e6d144d079a42183035b0ee4f (diff)
*: fix signedness mix-ups
Signed-off-by: David Lamparter <equinox@opensourcerouting.org> (cherry picked from commit 21401f3215be26dcb0f787105f5907745498e966)
Diffstat (limited to 'lib/md5.c')
-rw-r--r--lib/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/md5.c b/lib/md5.c
index 80522b6dd8..d758de2a28 100644
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -306,7 +306,7 @@ unsigned char* text; /* pointer to data stream */
int text_len; /* length of data stream */
unsigned char* key; /* pointer to authentication key */
int key_len; /* length of authentication key */
-caddr_t digest; /* caller digest to be filled in */
+uint8_t* digest; /* caller digest to be filled in */
{
MD5_CTX context;