Skip to content

Commit

Permalink
Merge pull request #9152 from davidlange6/FixRepack
Browse files Browse the repository at this point in the history
fix repacking
  • Loading branch information
davidlange6 committed May 19, 2015
2 parents ae5bb36 + d5fa9b0 commit 2025409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc
Expand Up @@ -82,7 +82,7 @@ class XrdStorageMaker : public StorageMaker
XrdCl::FileSystem fs(url);

XrdCl::StatInfo *stat;
if (!(fs.Stat(fullpath, stat)).IsOK() || (stat == nullptr))
if (!(fs.Stat(url.GetPath(), stat)).IsOK() || (stat == nullptr))
{
return false;
}
Expand Down

0 comments on commit 2025409

Please sign in to comment.