aboutsummaryrefslogtreecommitdiff
path: root/bpkg/archive.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/archive.cxx
parent592570fb39f52f1d766aede5f84838e0dc7f4c87 (diff)
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'bpkg/archive.cxx')
-rw-r--r--bpkg/archive.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/archive.cxx b/bpkg/archive.cxx
index f4a6405..358da42 100644
--- a/bpkg/archive.cxx
+++ b/bpkg/archive.cxx
@@ -31,7 +31,7 @@ namespace bpkg
bsdtar (const char* p)
{
const char* l (path::traits_type::find_leaf (p));
- return l != nullptr && casecmp (l, "bsdtar", 6) == 0;
+ return l != nullptr && icasecmp (l, "bsdtar", 6) == 0;
}
#endif