diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2015-03-03 08:55:26 +0100 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-07 08:47:49 -0400 | 
| commit | f2bce9a5b39e9fcd3da3e338ef197fa5109a5010 (patch) | |
| tree | ff4a122377f67330bb9f0650b759c4d7e8217482 /lib/md5.c | |
| parent | 8ecd32669320500e6d144d079a42183035b0ee4f (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.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -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;  | 
