summaryrefslogtreecommitdiff
path: root/libsoup/server/soup-auth-domain-digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'libsoup/server/soup-auth-domain-digest.c')
-rw-r--r--libsoup/server/soup-auth-domain-digest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/server/soup-auth-domain-digest.c b/libsoup/server/soup-auth-domain-digest.c
index 4011babf..3a63bc4f 100644
--- a/libsoup/server/soup-auth-domain-digest.c
+++ b/libsoup/server/soup-auth-domain-digest.c
@@ -237,7 +237,7 @@ check_hex_urp (SoupAuthDomain *domain,
req_path = soup_uri_get_path_and_query (req_uri);
dig_path = g_uri_unescape_string (uri, NULL);
- if (strcmp (dig_path, req_path) != 0) {
+ if (g_strcmp0 (dig_path, req_path) != 0) {
g_free (req_path);
g_free (dig_path);
return FALSE;