summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_from_h1.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2015-11-23 17:28:36 +0100
committerYann Ylavic <ylavic@apache.org>2015-11-23 17:28:36 +0100
commit3c9ddf44bf789d682ae7768428f4f751da40abbd (patch)
tree13abdfce35d4222e6d16ade749f08c735b72c439 /modules/http2/h2_from_h1.c
parentwe just worry about "equality" with this implementation... (diff)
downloadapache2-3c9ddf44bf789d682ae7768428f4f751da40abbd.tar.xz
apache2-3c9ddf44bf789d682ae7768428f4f751da40abbd.zip
Revert r1715789: will re-commit without spurious functional changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715869 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_from_h1.c')
-rw-r--r--modules/http2/h2_from_h1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_from_h1.c b/modules/http2/h2_from_h1.c
index a02794f319..43a4f0822b 100644
--- a/modules/http2/h2_from_h1.c
+++ b/modules/http2/h2_from_h1.c
@@ -262,7 +262,7 @@ static int uniq_field_values(void *d, const char *key, const char *val)
*/
for (i = 0, strpp = (char **) values->elts; i < values->nelts;
++i, ++strpp) {
- if (*strpp && ap_casecmpstr(*strpp, start) == 0) {
+ if (*strpp && strcasecmp(*strpp, start) == 0) {
break;
}
}