Skip to content

Commit

Permalink
[Server] Fix improper falg test.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 30, 2020
1 parent 09e60a0 commit 7bb42c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdXrootd/XrdXrootdXeq.cc
Expand Up @@ -1443,7 +1443,7 @@ int XrdXrootdProtocol::do_Open()

// If TPC opens require TLS but this is not a TLS connection, prohibit TPC
//
if ((doTLS && Req_TLSTPC) && !isTLS && !Link->hasBridge())
if ((doTLS & Req_TLSTPC) && !isTLS && !Link->hasBridge())
openopts|= SFS_O_NOTPC;

// Open the file
Expand Down

0 comments on commit 7bb42c8

Please sign in to comment.