Skip to content

Commit

Permalink
[Server] Remove unsed parameter in do_Protocol().
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and simonmichal committed Jun 21, 2019
1 parent 43c7f55 commit 72056ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/XrdXrootd/XrdXrootdProtocol.hh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ enum RD_func {RD_chmod = 0, RD_chksum, RD_dirlist, RD_locate, RD_mkdir,
int do_Open();
int do_Ping();
int do_Prepare(bool isQuery=false);
int do_Protocol(ServerResponseBody_Protocol *rsp=0);
int do_Protocol();
int do_Putfile();
int do_Qconf();
int do_Qfh();
Expand Down
2 changes: 1 addition & 1 deletion src/XrdXrootd/XrdXrootdXeq.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ int XrdXrootdProtocol::do_Prepare(bool isQuery)
/* d o _ P r o t o c o l */
/******************************************************************************/

int XrdXrootdProtocol::do_Protocol(ServerResponseBody_Protocol *rsp)
int XrdXrootdProtocol::do_Protocol()
{
static kXR_int32 verNum = static_cast<kXR_int32>(htonl(kXR_PROTOCOLVERSION));
static kXR_int32 theRle = static_cast<kXR_int32>(htonl(myRole));
Expand Down

0 comments on commit 72056ed

Please sign in to comment.