Skip to content

Commit

Permalink
oss::rename: temprary remove check on existence
Browse files Browse the repository at this point in the history
  • Loading branch information
gganis committed Dec 8, 2017
1 parent 2c83dcb commit 7b7bef0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/XrdOss/XrdOssRename.cc
Expand Up @@ -112,8 +112,10 @@ int XrdOssSys::Rename(const char *oldname, const char *newname,

// Make sure that the target file does not exist
//
#if 0
retc2 = lstat(local_path_New, &statbuff);
if (!retc2) return -EEXIST;
#endif

// We need to create the directory path if it does not exist.
//
Expand Down

0 comments on commit 7b7bef0

Please sign in to comment.