Index: xvfs-core.c ================================================================== --- xvfs-core.c +++ xvfs-core.c @@ -58,11 +58,11 @@ const char *pathStr; int retval; pathStr = xvfs_relativePath(path, instanceInfo); - retval = instanceInfo->fsInfo->getInfoProc(pathStr, statBuf); + retval = instanceInfo->fsInfo->getStatProc(pathStr, statBuf); return(retval); } static Tcl_Obj *xvfs_tclfs_listVolumes(struct xvfs_tclfs_instance_info *instanceInfo) { Index: xvfs-core.h ================================================================== --- xvfs-core.h +++ xvfs-core.h @@ -5,18 +5,18 @@ #define XVFS_PROTOCOL_VERSION 1 typedef const char **(*xvfs_proc_getChildren_t)(const char *path, Tcl_WideInt *count); typedef const unsigned char *(*xvfs_proc_getData_t)(const char *path, Tcl_WideInt start, Tcl_WideInt *length); -typedef int (*xvfs_proc_getInfo_t)(const char *path, Tcl_StatBuf *statBuf); +typedef int (*xvfs_proc_getStat_t)(const char *path, Tcl_StatBuf *statBuf); struct Xvfs_FSInfo { int protocolVersion; const char *name; xvfs_proc_getChildren_t getChildrenProc; xvfs_proc_getData_t getDataProc; - xvfs_proc_getInfo_t getInfoProc; + xvfs_proc_getStat_t getStatProc; }; #define XVFS_REGISTER_INTERFACE(name) int name(Tcl_Interp *interp, struct Xvfs_FSInfo *fsInfo); #if defined(XVFS_MODE_STANDALONE) Index: xvfs.c.rvt ================================================================== --- xvfs.c.rvt +++ xvfs.c.rvt @@ -154,11 +154,11 @@ * Return the data */ return(fileInfo->data.fileContents + start); } -static int xvfs__getInfo(const char *path, Tcl_StatBuf *statBuf) { +static int xvfs__getStat(const char *path, Tcl_StatBuf *statBuf) { struct xvfs_file_data *fileInfo; long inode; /* * Validate input parameters @@ -206,11 +206,11 @@ static struct Xvfs_FSInfo xvfs__fsInfo = { .protocolVersion = XVFS_PROTOCOL_VERSION, .name = "", .getChildrenProc = xvfs__getChildren, .getDataProc = xvfs__getData, - .getInfoProc = xvfs__getInfo + .getStatProc = xvfs__getStat }; int Xvfs__Init(Tcl_Interp *interp) { int register_ret;