From 97040cc302064ad247534599bd9297f00173b3d9 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Sun, 2 Apr 2006 21:46:18 +0000 Subject: fix most signed/unsigned mismatch warnings * libsoup/*.c: fix most signed/unsigned mismatch warnings --- libsoup/soup-auth-digest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsoup/soup-auth-digest.c') diff --git a/libsoup/soup-auth-digest.c b/libsoup/soup-auth-digest.c index 00bdbb17..96d83fe2 100644 --- a/libsoup/soup-auth-digest.c +++ b/libsoup/soup-auth-digest.c @@ -41,7 +41,7 @@ typedef enum { typedef struct { char *user; - guchar hex_a1[33]; + char hex_a1[33]; /* These are provided by the server */ char *realm; @@ -302,7 +302,7 @@ is_authenticated (SoupAuth *auth) static char * compute_response (SoupAuthDigestPrivate *priv, SoupMessage *msg) { - guchar hex_a2[33], o[33]; + char hex_a2[33], o[33]; SoupMD5Context md5; char *url; const SoupUri *uri; -- cgit v1.2.1