Skip to content

Commit

Permalink
XrdHttp: allow VO names with spaces and other quoted chars
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrizio Furano authored and simonmichal committed Oct 4, 2022
1 parent 2fb2f8c commit 0d3603b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/XrdHttp/XrdHttpReq.cc
Expand Up @@ -803,7 +803,11 @@ void XrdHttpReq::appendOpaque(XrdOucString &s, XrdSecEntity *secent, char *hash,

if (secent->vorg) {
s += "&xrdhttpvorg=";
s += secent->vorg;
char *s1 = quote(secent->vorg);
if (s1) {
s += s1;
free(s1);
}
}

if (secent->host) {
Expand Down

0 comments on commit 0d3603b

Please sign in to comment.