From cdcb44468670b2f557070c43f2ca6dd389eda03c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 28 Sep 2019 18:00:43 +0300 Subject: Adapt to renaming butl::casecmp() to icasecmp() --- mod/page.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/page.cxx') 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 (); -- cgit v1.1