aboutsummaryrefslogtreecommitdiff
path: root/src/url.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-03-29 16:17:46 +0100
committerjcid <devnull@localhost>2008-03-29 16:17:46 +0100
commit9cc2a6bd3f4e22987b283c84382dcb2ca9ac1ad4 (patch)
treefb40bea77bfaa712b341a20739be1a86096a4371 /src/url.c
parent66f72ec847a387e808b798172da882dde3f3dda7 (diff)
- Fixed a bug in a_Url_cmp.
Diffstat (limited to 'src/url.c')
-rw-r--r--src/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url.c b/src/url.c
index 74a7e445..2e23c3b4 100644
--- a/src/url.c
+++ b/src/url.c
@@ -459,7 +459,7 @@ int a_Url_cmp(const DilloUrl *A, const DilloUrl *B)
//(st = URL_STR_FIELD_CMP(A->path, B->path)) == 0 &&
(st = URL_STR_FIELD_CMP(A->query, B->query)) == 0 &&
(st = dStr_cmp(A->data, B->data)) == 0 &&
- (st = URL_STR_FIELD_I_CMP(A->scheme, B->scheme) == 0)))
+ (st = URL_STR_FIELD_I_CMP(A->scheme, B->scheme)) == 0))
return 0;
return st;
}