2006-03-07 [paul] 2.0.0cvs117
authorPaul Mangan <paul@claws-mail.org>
Tue, 7 Mar 2006 09:03:50 +0000 (09:03 +0000)
committerPaul Mangan <paul@claws-mail.org>
Tue, 7 Mar 2006 09:03:50 +0000 (09:03 +0000)
* src/textview.c
fix wrong Fake URL Warning
Thanks to Hiro

ChangeLog
PATCHSETS
configure.ac
src/textview.c

index 0883d3ff3ffe976970016b7e408d8293191fbd3c..cbc0973dc7bfca4d4d47546188a66d4349cc5486 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-07 [paul]      2.0.0cvs117
+
+       * src/textview.c
+               fix wrong Fake URL Warning
+               Thanks to Hiro
+
 2006-03-07 [colin]     2.0.0cvs116
 
        * src/imap.c
index 820b204d5106ea095254fa8aa6d447a5b2905544..5bfca31307f01537261c42ce97215de1cace7b38 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.179.2.96 -r 1.179.2.97 src/imap.c;  ) > 2.0.0cvs114.patchset
 ( cvs diff -u -r 1.179.2.97 -r 1.179.2.98 src/imap.c;  ) > 2.0.0cvs115.patchset
 ( cvs diff -u -r 1.179.2.98 -r 1.179.2.99 src/imap.c;  cvs diff -u -r 1.2.2.15 -r 1.2.2.16 src/gtk/inputdialog.c;  ) > 2.0.0cvs116.patchset
+( cvs diff -u -r 1.96.2.99 -r 1.96.2.100 src/textview.c;  ) > 2.0.0cvs117.patchset
index e8a42cce9b6aa7e3260137c02039cf9c2bf9d6c5..dedfd7821accee93ec7aa6377a083fbf3edd6463 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=0
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=116
+EXTRA_VERSION=117
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index e42988edb965f7896a2ffd3ac09f6ef0a0903418..5355eb47aa87a8535e124506af598cfe79c50eab 100644 (file)
@@ -1976,7 +1976,7 @@ static gboolean textview_uri_security_check(TextView *textview, RemoteURI *uri)
 
                uri_path = get_uri_path(uri->uri);
                visible_uri_path = get_uri_path(visible_str);
-               if (strcmp(uri_path, visible_uri_path) != 0)
+               if (path_cmp(uri_path, visible_uri_path) != 0)
                        retval = FALSE;
        }