Skip to content

Commit

Permalink
Merge pull request #1112 from costing/patch-1
Browse files Browse the repository at this point in the history
Fix escape code for \r
  • Loading branch information
simonmichal committed Jan 21, 2020
2 parents bf5df01 + 575cf1b commit 69de3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdHttp/XrdHttpUtils.cc
Expand Up @@ -380,7 +380,7 @@ char *quote(const char *str) {
j += 3;
break;
case '\r':
strcpy(r + j, "%0C");
strcpy(r + j, "%0D");
j += 3;
break;
default:
Expand Down

0 comments on commit 69de3f4

Please sign in to comment.