summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredman <redman>1999-07-01 23:21:06 (GMT)
committerredman <redman>1999-07-01 23:21:06 (GMT)
commit733df6bdb27c26175f854cf69d08f0cfef9e855e (patch)
treea91f8b07763f9757ab1d5d9718aaefa36e855881
parentcbc160d0d87b1efa3096c590343d0553633cb9cc (diff)
downloadtcl-733df6bdb27c26175f854cf69d08f0cfef9e855e.zip
tcl-733df6bdb27c26175f854cf69d08f0cfef9e855e.tar.gz
tcl-733df6bdb27c26175f854cf69d08f0cfef9e855e.tar.bz2
Call TclStat instead of TclpStat in order to allow the
stat hooks to work properly.
-rw-r--r--generic/tclCmdAH.c16
-rw-r--r--generic/tclFCmd.c10
2 files changed, 13 insertions, 13 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c
index d59dfeb..8dc8c54 100644
--- a/generic/tclCmdAH.c
+++ b/generic/tclCmdAH.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdAH.c,v 1.6 1999/05/22 01:20:12 stanton Exp $
+ * RCS: @(#) $Id: tclCmdAH.c,v 1.7 1999/07/01 23:21:06 redman Exp $
*/
#include "tclInt.h"
@@ -829,7 +829,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
if (objc != 3) {
goto only3Args;
}
- if (GetStatBuf(interp, objv[2], TclpStat, &buf) != TCL_OK) {
+ if (GetStatBuf(interp, objv[2], TclStat, &buf) != TCL_OK) {
return TCL_ERROR;
}
Tcl_SetLongObj(resultPtr, (long) buf.st_atime);
@@ -923,7 +923,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
goto only3Args;
}
value = 0;
- if (GetStatBuf(NULL, objv[2], TclpStat, &buf) == TCL_OK) {
+ if (GetStatBuf(NULL, objv[2], TclStat, &buf) == TCL_OK) {
value = S_ISDIR(buf.st_mode);
}
Tcl_SetBooleanObj(resultPtr, value);
@@ -937,7 +937,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
goto only3Args;
}
value = 0;
- if (GetStatBuf(NULL, objv[2], TclpStat, &buf) == TCL_OK) {
+ if (GetStatBuf(NULL, objv[2], TclStat, &buf) == TCL_OK) {
value = S_ISREG(buf.st_mode);
}
Tcl_SetBooleanObj(resultPtr, value);
@@ -980,7 +980,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
if (objc != 3) {
goto only3Args;
}
- if (GetStatBuf(interp, objv[2], TclpStat, &buf) != TCL_OK) {
+ if (GetStatBuf(interp, objv[2], TclStat, &buf) != TCL_OK) {
return TCL_ERROR;
}
Tcl_SetLongObj(resultPtr, (long) buf.st_mtime);
@@ -1023,7 +1023,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
goto only3Args;
}
value = 0;
- if (GetStatBuf(NULL, objv[2], TclpStat, &buf) == TCL_OK) {
+ if (GetStatBuf(NULL, objv[2], TclStat, &buf) == TCL_OK) {
/*
* For Windows and Macintosh, there are no user ids
* associated with a file, so we always return 1.
@@ -1135,7 +1135,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
if (objc != 3) {
goto only3Args;
}
- if (GetStatBuf(interp, objv[2], TclpStat, &buf) != TCL_OK) {
+ if (GetStatBuf(interp, objv[2], TclStat, &buf) != TCL_OK) {
return TCL_ERROR;
}
Tcl_SetLongObj(resultPtr, (long) buf.st_size);
@@ -1167,7 +1167,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv)
Tcl_WrongNumArgs(interp, 1, objv, "stat name varName");
return TCL_ERROR;
}
- if (GetStatBuf(interp, objv[2], TclpStat, &buf) != TCL_OK) {
+ if (GetStatBuf(interp, objv[2], TclStat, &buf) != TCL_OK) {
return TCL_ERROR;
}
varName = Tcl_GetString(objv[3]);
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c
index 32c7186..d975cc6 100644
--- a/generic/tclFCmd.c
+++ b/generic/tclFCmd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclFCmd.c,v 1.5 1999/04/21 21:50:25 rjohnson Exp $
+ * RCS: @(#) $Id: tclFCmd.c,v 1.6 1999/07/01 23:21:07 redman Exp $
*/
#include "tclInt.h"
@@ -141,12 +141,12 @@ FileCopyRename(interp, argc, argv, copyFlag)
result = TCL_OK;
/*
- * Call TclpStat() so that if target is a symlink that points to a
+ * Call TclStat() so that if target is a symlink that points to a
* directory we will put the sources in that directory instead of
* overwriting the symlink.
*/
- if ((TclpStat(target, &statBuf) != 0) || !S_ISDIR(statBuf.st_mode)) {
+ if ((TclStat(target, &statBuf) != 0) || !S_ISDIR(statBuf.st_mode)) {
if ((argc - i) > 2) {
errno = ENOTDIR;
Tcl_PosixError(interp);
@@ -253,12 +253,12 @@ TclFileMakeDirsCmd(interp, argc, argv)
char *target = Tcl_JoinPath(j + 1, pargv, &targetBuffer);
/*
- * Call TclpStat() so that if target is a symlink that points
+ * Call TclStat() so that if target is a symlink that points
* to a directory we will create subdirectories in that
* directory.
*/
- if (TclpStat(target, &statBuf) == 0) {
+ if (TclStat(target, &statBuf) == 0) {
if (!S_ISDIR(statBuf.st_mode)) {
errno = EEXIST;
errfile = target;