Forgot to commit caddyfile.go changes in last commit

This commit is contained in:
Matthew Holt 2019-09-13 23:38:52 -06:00
parent c09e86fddc
commit 2ab2d5bf9e
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ func init() {
// Either a block can be opened or a single header field can be configured
// in the first line, but not both in the same directive.
func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
hdr := new(Headers)
hdr := new(Handler)
for h.Next() {
// first see if headers are in the initial line
var hasArgs bool
@ -74,7 +74,7 @@ func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error)
// request_header [<matcher>] [[+|-]<field> <value>]
//
func parseReqHdrCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
hdr := new(Headers)
hdr := new(Handler)
for h.Next() {
if !h.NextArg() {
return nil, h.ArgErr()
@ -109,7 +109,7 @@ func parseReqHdrCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler,
return hdr, nil
}
func processCaddyfileLineRespHdr(hdr *Headers, field, value string) {
func processCaddyfileLineRespHdr(hdr *Handler, field, value string) {
if hdr.Response == nil {
hdr.Response = &RespHeaderOps{
HeaderOps: new(HeaderOps),