mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
First argument of MD5Final is an array of unsigned characters.
Declare 'digest' local variable accordingly.
This commit is contained in:
parent
edb2e5dca3
commit
7e2f16ba72
1 changed files with 2 additions and 1 deletions
|
|
@ -69,7 +69,8 @@ void
|
|||
scsp_cache_key(const Atm_addr *ap, const struct in_addr *ip, int ol, char *op)
|
||||
{
|
||||
int i, len;
|
||||
char buff[32], digest[16];
|
||||
char buff[32];
|
||||
unsigned char digest[16];
|
||||
MD5_CTX context;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue