Skip to content

Commit

Permalink
Update XrdHttpProtocol.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
ffurano committed Oct 6, 2017
1 parent 32db14d commit 2259c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdHttp/XrdHttpProtocol.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@ int XrdHttpProtocol::LoadExtHandler(XrdSysError *myeDest, const char *libName,
XrdHttpExtHandler * XrdHttpProtocol::FindMatchingExtHandler(const XrdHttpReq &req) {
std::vector<XrdHttpExtHandler *>::const_iterator it;
for (it = exthandler.begin(); it != exthandler.end(); it++) {
if ((*it)->MatchesPath(req.resource.c_str())) {
if ((*it)->MatchesPath(req.requestverb, req.resource.c_str())) {
return *it;
}
}
Expand Down

0 comments on commit 2259c9d

Please sign in to comment.