diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 11:11:02 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 14:55:27 +0200 |
commit | c3e2855e0a52e6188417738b8ee7e3b028e49bc9 (patch) | |
tree | 3f1c703954f573a8cdf2f0e32ba1fb2406281cf7 | |
parent | 1c99f419fe91a9a39eb5faa056b9867de2d988a1 (diff) |
-rw-r--r-- | bbot/agent/http-service.cxx | 2 | ||||
-rw-r--r-- | bbot/utility.hxx | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bbot/agent/http-service.cxx b/bbot/agent/http-service.cxx index 3214885..23a2678 100644 --- a/bbot/agent/http-service.cxx +++ b/bbot/agent/http-service.cxx @@ -350,7 +350,7 @@ namespace bbot message = "HTTP status code " + to_string (rs.code); if (!rs.reason.empty ()) - message += " (" + lcase (rs.reason) + ')'; + message += " (" + make_lcase (rs.reason) + ')'; } if (location) diff --git a/bbot/utility.hxx b/bbot/utility.hxx index 7758db4..914c295 100644 --- a/bbot/utility.hxx +++ b/bbot/utility.hxx @@ -36,8 +36,13 @@ namespace bbot // <libbutl/utility.hxx> // + using butl::ucase; + using butl::make_ucase; + using butl::lcase; + using butl::make_lcase; using butl::icasecmp; using butl::sanitize_identifier; + using butl::make_sanitized_identifier; using butl::reverse_iterate; using butl::make_guard; |