summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFCmd.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-07-16 15:28:29 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-07-16 15:28:29 (GMT)
commitedcb9d3655e60d05d4774eef38d89620d0a0e6a1 (patch)
treeaa0e95baba6c5fd8ecb8ae6ff1c49839a8dbd332 /unix/tclUnixFCmd.c
parent3bf05e9189615ea7d195ecd15f452092916d278d (diff)
downloadtcl-edcb9d3655e60d05d4774eef38d89620d0a0e6a1.zip
tcl-edcb9d3655e60d05d4774eef38d89620d0a0e6a1.tar.gz
tcl-edcb9d3655e60d05d4774eef38d89620d0a0e6a1.tar.bz2
* generic/tclFileName.c (Tcl_GlobObjCmd): [Bug 771840]
* generic/tclIOUtil.c (Tcl_FSConvertToPathType):[Bug 771947] * unix/tclUnixFCmd.c (GetModeFromPermString): [Bug 771949] Silence compiler warnings about unreached lines.
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r--unix/tclUnixFCmd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index bc9746f..72f6846 100644
--- a/unix/tclUnixFCmd.c
+++ b/unix/tclUnixFCmd.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixFCmd.c,v 1.28 2003/02/10 12:50:31 vincentdarley Exp $
+ * RCS: @(#) $Id: tclUnixFCmd.c,v 1.28.2.1 2003/07/16 15:28:30 dgp Exp $
*
* Portions of this code were derived from NetBSD source code which has
* the following copyright notice:
@@ -1587,7 +1587,6 @@ GetModeFromPermString(interp, modeStringPtr, modePtr)
continue;
default :
return TCL_ERROR;
- break;
}
}
/* what */
@@ -1611,7 +1610,6 @@ GetModeFromPermString(interp, modeStringPtr, modePtr)
break;
default :
return TCL_ERROR;
- break;
}
if (*(modeStringPtr+n+i) == ',') {
i++;