diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-28 18:00:43 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-28 18:00:43 +0300 |
commit | cdcb44468670b2f557070c43f2ca6dd389eda03c (patch) | |
tree | 48d5eeef90779731b04b4a9654957acbe2b74197 /mod/page.cxx | |
parent | c3020dee6c91f2694cd098566716f2a4a7794dbe (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'mod/page.cxx')
-rw-r--r-- | mod/page.cxx | 4 |
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 (); |