aboutsummaryrefslogtreecommitdiff
path: root/mod/page.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'mod/page.cxx')
-rw-r--r--mod/page.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/page.cxx b/mod/page.cxx
index 1061788..e34e568 100644
--- a/mod/page.cxx
+++ b/mod/page.cxx
@@ -573,8 +573,8 @@ namespace brep
// Display HTTP(S) URL as link, striping the scheme prefix for the link
// text. Display URL with a different scheme as plain text.
//
- if (casecmp (url_.scheme, "https") == 0 ||
- casecmp (url_.scheme, "http") == 0)
+ if (icasecmp (url_.scheme, "https") == 0 ||
+ icasecmp (url_.scheme, "http") == 0)
{
butl::url u (url_);
u.scheme.clear ();