aboutsummaryrefslogtreecommitdiff
path: root/bpkg/manifest-utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-09-28 20:27:25 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-09-28 20:27:25 +0300
commit2aa96d090ad5d0428c0355a88ff543cab303f106 (patch)
treebec69e26ac4e258088dd2d138be6f9ea59a62d8f /bpkg/manifest-utility.cxx
parent592570fb39f52f1d766aede5f84838e0dc7f4c87 (diff)
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'bpkg/manifest-utility.cxx')
-rw-r--r--bpkg/manifest-utility.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx
index bf4956b..29025d3 100644
--- a/bpkg/manifest-utility.cxx
+++ b/bpkg/manifest-utility.cxx
@@ -28,7 +28,7 @@ namespace bpkg
// Ignore the character case for consistency with a case insensitivity of
// URI schemes some of which we may support in the future.
//
- if (casecmp (s, "sys:", 4) == 0)
+ if (icasecmp (s, "sys:", 4) == 0)
{
s += 4;
return package_scheme::sys;