aboutsummaryrefslogtreecommitdiff
path: root/libbutl/project-name.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-09-28 17:58:00 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-09-28 17:58:47 +0300
commit8f14a22e5bbb71d90577b35a09ba8ffae04bfe9c (patch)
tree96bce706024b3ec200170d5e090ac41615887606 /libbutl/project-name.cxx
parentf488e6473a7d0562c0e2df6d107a36de4d30d9da (diff)
Rename casecmp() function and case_compare_[c_]string structs to icasecmp() and icase_compare_[c_]string
Diffstat (limited to 'libbutl/project-name.cxx')
-rw-r--r--libbutl/project-name.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/project-name.cxx b/libbutl/project-name.cxx
index a1767e9..4b02949 100644
--- a/libbutl/project-name.cxx
+++ b/libbutl/project-name.cxx
@@ -88,7 +88,7 @@ namespace butl
if (e != nullptr &&
p != string::npos &&
- casecmp (value_.c_str () + p + 1, e) != 0)
+ icasecmp (value_.c_str () + p + 1, e) != 0)
p = string::npos;
return string (value_, 0, p);