Skip to content

Commit

Permalink
[Server] Remove unneeded log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 25, 2020
1 parent a8f029e commit 817d0b8
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/XrdOfs/XrdOfs.cc
Expand Up @@ -400,15 +400,10 @@ int XrdOfsDirectory::autoStat(struct stat *buf)
return SFS_ERROR;
}

// Set the stat buffer in the storage system directory.
// Set the stat buffer in the storage system directory but don't complain.
//
if ((retc = dp->StatRet(buf)))
retc = XrdOfsFS->Emsg(epname, error, retc, "autostat", fname);
else retc = SFS_OK;

// All done
//
return retc;
if ((retc = dp->StatRet(buf))) return retc;
return SFS_OK;
}

/******************************************************************************/
Expand Down

0 comments on commit 817d0b8

Please sign in to comment.