Repository: trafficserver Updated Branches: refs/heads/master fd99ef716 -> 2c8cd1199
Fix typo Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/2c8cd119 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/2c8cd119 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/2c8cd119 Branch: refs/heads/master Commit: 2c8cd11999c8b5cb6a1417bb52bb2ed1e94c2ba6 Parents: fd99ef7 Author: Thomas Jackson <[email protected]> Authored: Fri Aug 28 17:10:29 2015 -0700 Committer: Thomas Jackson <[email protected]> Committed: Fri Aug 28 17:10:29 2015 -0700 ---------------------------------------------------------------------- plugins/header_rewrite/conditions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c8cd119/plugins/header_rewrite/conditions.cc ---------------------------------------------------------------------- diff --git a/plugins/header_rewrite/conditions.cc b/plugins/header_rewrite/conditions.cc index 0336158..66378e4 100644 --- a/plugins/header_rewrite/conditions.cc +++ b/plugins/header_rewrite/conditions.cc @@ -246,7 +246,7 @@ ConditionHeader::append_value(std::string &s, const Resources &res) next_field_loc = TSMimeHdrFieldNextDup(bufp, hdr_loc, field_loc); TSDebug(PLUGIN_NAME, "Appending HEADER(%s) to evaluation value -> %.*s", _qualifier.c_str(), len, value); s.append(value, len); - // multiple headers with the same name must be symantically the same as one value which is comma seperated (http://tools.ietf.org/html/rfc2616#section-4.2) + // multiple headers with the same name must be semantically the same as one value which is comma seperated if (next_field_loc){ s.append(","); }
