diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/url.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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! @@ -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; } |