Skip to content

Commit

Permalink
[XrdCl] Use diffrent bit for mkpath and tpc delegation.
Browse files Browse the repository at this point in the history
fixes #1077
  • Loading branch information
simonmichal committed Oct 31, 2019
1 parent e23e7f3 commit 0e4637f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/XrdApps/XrdCpConfig.hh
Expand Up @@ -113,9 +113,6 @@ static const int OpLicense = 'H'; // -H | --license
static const int OpNoPbar = 'N'; // -N | --nopbar | -np {legacy}
static const int DoNoPbar = 0x0000000000000100LL;

static const int OpPath = 'p';
static const int DoPath = 0x0000000000800000LL; // -p | --path

static const int OpPosc = 'P';
static const int DoPosc = 0x0000000000000200LL; // -P | --posc

Expand Down Expand Up @@ -174,6 +171,9 @@ static const int DoNoTlsOK = 0x0000000004000000LL; // --notlsok
static const int OpTlsMLF = 0x06;
static const int DoTlsMLF = 0x0000000008000000LL; // --tlsmetalink

static const int OpPath = 'p';
static const int DoPath = 0x0000000010000000LL; // -p | --path

// Flag to allow the use of HTTP (and HTTPS) as source and destination
// protocols. If specified, the XrdClHttp client plugin must be available
// for the transfer operations to succeed.
Expand Down

0 comments on commit 0e4637f

Please sign in to comment.