summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Graveley <alex@ximian.com>2001-08-28 01:22:23 +0000
committerAlex Graveley <orph@src.gnome.org>2001-08-28 01:22:23 +0000
commit21e347395c3004a67b37ad3de81c0b19a40e9bee (patch)
tree9e44075a40733fb1055d715e6b753d66671def34
parent8f9d019bc69bbb89952555decf65733b7c472214 (diff)
downloadlibsoup-21e347395c3004a67b37ad3de81c0b19a40e9bee.tar.gz
Set the compare func on the returned object.
2001-08-27 Alex Graveley <alex@ximian.com> * src/soup-core/soup-auth.c (soup_auth_new_digest): Set the compare func on the returned object.
-rw-r--r--ChangeLog5
-rw-r--r--libsoup/soup-auth.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ea44fd4c..b6485efd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-27 Alex Graveley <alex@ximian.com>
+
+ * src/soup-core/soup-auth.c (soup_auth_new_digest): Set the
+ compare func on the returned object.
+
2001-08-27 Joe Shaw <joe@ximian.com>
* src/soup-core/soup-context.c (soup_try_existing_connections):
diff --git a/libsoup/soup-auth.c b/libsoup/soup-auth.c
index 13a1f6f9..a809a807 100644
--- a/libsoup/soup-auth.c
+++ b/libsoup/soup-auth.c
@@ -457,6 +457,7 @@ soup_auth_new_digest (void)
digest = g_new0 (SoupAuthDigest, 1);
auth = (SoupAuth *) digest;
auth->type = SOUP_AUTH_DIGEST;
+ auth->compare_func = digest_compare_func;
auth->parse_func = digest_parse_func;
auth->auth_func = digest_auth_func;
auth->free_func = digest_free;