From c28e3fe4832a306e8000b04d3bfc886646a824e4 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Tue, 7 Mar 2006 09:03:50 +0000 Subject: [PATCH] 2006-03-07 [paul] 2.0.0cvs117 * src/textview.c fix wrong Fake URL Warning Thanks to Hiro --- ChangeLog | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/textview.c | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0883d3ff3..cbc0973dc 100644 --- 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 diff --git a/PATCHSETS b/PATCHSETS index 820b204d5..5bfca3130 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1300,3 +1300,4 @@ ( 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 diff --git a/configure.ac b/configure.ac index e8a42cce9..dedfd7821 100644 --- a/configure.ac +++ b/configure.ac @@ -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= diff --git a/src/textview.c b/src/textview.c index e42988edb..5355eb47a 100644 --- a/src/textview.c +++ b/src/textview.c @@ -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; } -- 2.25.1