summaryrefslogtreecommitdiff
path: root/libsoup/soup-auth-digest.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2006-04-02 21:46:18 +0000
committerDan Winship <danw@src.gnome.org>2006-04-02 21:46:18 +0000
commit97040cc302064ad247534599bd9297f00173b3d9 (patch)
tree872d407edd30daad92a725c1f8f9d512fff58539 /libsoup/soup-auth-digest.c
parentf764117390c7241850251e8b52d182e42190923f (diff)
downloadlibsoup-97040cc302064ad247534599bd9297f00173b3d9.tar.gz
fix most signed/unsigned mismatch warnings
* libsoup/*.c: fix most signed/unsigned mismatch warnings
Diffstat (limited to 'libsoup/soup-auth-digest.c')
-rw-r--r--libsoup/soup-auth-digest.c4
1 files changed, 2 insertions, 2 deletions
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;