aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/url.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f1e0d32b..663a5e7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,6 +83,7 @@ dillo-fltk2
- Fixed the return value of Cache_parse_multiple_field.
- Added the multipart/form-data encoding method to form submission.
- Fixed a bug in Html_parse_entity.
+ - Fixed a bug in a_Url_cmp.
Patches: place
+- Fixed a problem with locally-installed dpis.
- Added code for optional image loading (nice interface) very advanced!
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;
}