diff --git a/src/XrdApps/XrdClJCachePlugin/plugin/XrdClJCachePlugin.hh b/src/XrdApps/XrdClJCachePlugin/plugin/XrdClJCachePlugin.hh index d0ce85a0ce6..11ba5afff2a 100644 --- a/src/XrdApps/XrdClJCachePlugin/plugin/XrdClJCachePlugin.hh +++ b/src/XrdApps/XrdClJCachePlugin/plugin/XrdClJCachePlugin.hh @@ -57,13 +57,13 @@ public: JCacheFile::SetVector(itv != config->end() ? itv->second == "true" : false); auto itj = config->find("journal"); - JCacheFile::SetJournal(itj != config->end() ? itj->second == "false" + JCacheFile::SetJournal(itj != config->end() ? itj->second == "true" : true); auto itjson = config->find("json"); JCacheFile::SetJsonPath(itjson != config->end() ? itjson->second : "./"); auto its = config->find("summary"); - JCacheFile::SetSummary(its != config->end() ? its->second != "false" + JCacheFile::SetSummary(its != config->end() ? its->second == "true" : true); if (const char *v = getenv("XRD_JCACHE_CACHE")) {