Skip to content

Commit

Permalink
[HTTP] Use correct flag to request creation of directory path in MKCOL.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and gganis committed Nov 23, 2021
1 parent 6cf9c8f commit cfbf621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdHttp/XrdHttpReq.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1692,7 +1692,7 @@ int XrdHttpReq::ProcessHTTPReq() {
xrdreq.mkdir.requestid = htons(kXR_mkdir);

string s = resourceplusopaque.c_str();
xrdreq.mkdir.options[0] = (kXR_char) kXR_mkpath;
xrdreq.mkdir.options[0] = (kXR_char) kXR_mkdirpath;

l = s.length() + 1;
xrdreq.mkdir.dlen = htonl(l);
Expand Down

0 comments on commit cfbf621

Please sign in to comment.