diff options
Diffstat (limited to 'httpdigest.h')
-rw-r--r-- | httpdigest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httpdigest.h b/httpdigest.h index d4764a1..fb6d114 100644 --- a/httpdigest.h +++ b/httpdigest.h @@ -25,9 +25,9 @@ #if PROXY_DIGEST_AUTH
#define HASHLEN 16
-typedef char HASH[HASHLEN];
+typedef unsigned char HASH[HASHLEN];
#define HASHHEXLEN 32
-typedef char HASHHEX[HASHHEXLEN+1];
+typedef unsigned char HASHHEX[HASHHEXLEN+1];
#undef IN
#undef OUT
#define IN const
|