Skip to content

Commit

Permalink
http: correct error message for invalid trailer
Browse files Browse the repository at this point in the history
Prevent misleading error messages when trailers are invalid.

PR-URL: #6308
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Brian White <mscdex@mscdex.net>
  • Loading branch information
bengl authored and jasnell committed Apr 27, 2016
1 parent e556dd3 commit 31bef6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_http_outgoing.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ OutgoingMessage.prototype.addTrailers = function(headers) {
'Trailer name must be a valid HTTP Token ["' + field + '"]');
}
if (common._checkInvalidHeaderChar(value) === true) {
throw new TypeError('The header content contains invalid characters');
throw new TypeError('The trailer content contains invalid characters');
}
this._trailer += field + ': ' + escapeHeaderValue(value) + CRLF;
}
Expand Down

0 comments on commit 31bef6b

Please sign in to comment.