Skip to content

Commit

Permalink
Merge pull request #5910: rgw: backport content-type casing
Browse files Browse the repository at this point in the history
Reviewed-by:
  • Loading branch information
Loic Dachary committed Nov 13, 2015
2 parents ba2c3f6 + db1cbe7 commit 25d91be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rgw/rgw_rest.cc
Expand Up @@ -555,7 +555,7 @@ void end_header(struct req_state *s, RGWOp *op, const char *content_type, const

int r;
if (content_type) {
r = s->cio->print("Content-type: %s\r\n", content_type);
r = s->cio->print("Content-Type: %s\r\n", content_type);
if (r < 0) {
ldout(s->cct, 0) << "ERROR: s->cio->print() returned err=" << r << dendl;
}
Expand Down

0 comments on commit 25d91be

Please sign in to comment.