diff options
author | vincentdarley <vincentdarley> | 2004-04-07 15:54:15 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-04-07 15:54:15 (GMT) |
commit | 7c3def8e8104cdeb9a96d6aff4a687642282f559 (patch) | |
tree | 3be10ca8f525dc64141676bbbbe969e1fa6e4b52 /generic | |
parent | e407d02f990c703f6f1d296673d0a52cac8c7142 (diff) | |
download | tcl-7c3def8e8104cdeb9a96d6aff4a687642282f559.zip tcl-7c3def8e8104cdeb9a96d6aff4a687642282f559.tar.gz tcl-7c3def8e8104cdeb9a96d6aff4a687642282f559.tar.bz2 |
fix to comment (bug 931148)
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIOUtil.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index f44a8f2..325f017 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.99 2004/04/06 22:25:53 dgp Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.100 2004/04/07 15:54:15 vincentdarley Exp $ */ #include "tclInt.h" @@ -1291,9 +1291,9 @@ Tcl_FSData(fsPtr) FilesystemRecord *fsRecPtr = FsGetFirstFilesystem(); /* - * Traverse the 'filesystemList' looking for the particular node - * whose 'fsPtr' member matches 'fsPtr' and remove that one from - * the list. Ensure that the "default" node cannot be removed. + * Traverse the list of filesystems look for a particular one. + * If found, return that filesystem's clientData (originally + * provided when calling Tcl_FSRegister). */ while ((retVal == NULL) && (fsRecPtr != NULL)) { |