aboutsummaryrefslogtreecommitdiff
path: root/src/textview.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textview.c')
-rw-r--r--src/textview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textview.c b/src/textview.c
index a705c1c9..f4a12dcd 100644
--- a/src/textview.c
+++ b/src/textview.c
@@ -2082,7 +2082,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;
}