Skip to content

Commit

Permalink
[Server] Correct using wrong class in header.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and simonmichal committed Oct 16, 2019
1 parent 83030b0 commit 37f3a37
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/XrdOfs/XrdOfsPrepare.hh
Expand Up @@ -40,8 +40,8 @@ class XrdOss;
class XrdOucEnv;
class XrdOucErrInfo;
class XrdSecEntity;
class XrdSfsFileSystem;
class XrdSfsPrep;
class XrdSfs;

class XrdOfsPrepare
{
Expand Down Expand Up @@ -130,7 +130,7 @@ virtual ~XrdOfsPrepare() {}
//! may be null though that would be impossible.
//! @param parms -> Argument string specified on the namelib directive. It may
//! be null or point to a null string if no parms exist.
//! @param theSfs-> Pointer to the SFS plugin.
//! @param theSfs-> Pointer to the XrdSfsFileSystem plugin.
//! @param theOSs-> Pointer to the OSS plugin.
//!
//! @return Success: A pointer to an instance of the XrdOfsPrepare object.
Expand All @@ -142,15 +142,17 @@ class XrdSysError;
typedef XrdOfsPrepare *(*XrdOfsgetPrepare_t)(XrdSysError *eDest,
const char *confg,
const char *parms,
XrdSfs *theSfs,
XrdSfsFileSystem
*theSfs,
XrdOss *theOss,
XrdOucEnv *envP
);

#define XrdOfsgetPrepareArguments XrdSysError *eDest,\
const char *confg,\
const char *parms,\
XrdSfs *theSfs,\
XrdSfsFileSystem\
*theSfs,\
XrdOss *theOss,\
XrdOucEnv *envP
/*
Expand Down

0 comments on commit 37f3a37

Please sign in to comment.