Skip to content

Commit

Permalink
fix repacking
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 committed May 19, 2015
1 parent ae5bb36 commit d5fa9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc
Original file line number Diff line number Diff line change
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 d5fa9b0

Please sign in to comment.