From d5fa9b0b130bf591bb5fea5faa765a9c07d60207 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 19 May 2015 14:48:57 +0200 Subject: [PATCH] fix repacking --- Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc b/Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc index 1a30874c0a2a7..3e853a365deac 100644 --- a/Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc +++ b/Utilities/XrdAdaptor/plugins/XrdStorageMaker.cc @@ -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; }