summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2003-07-16 15:29:09 (GMT)
committerdgp <dgp@noemail.net>2003-07-16 15:29:09 (GMT)
commit075689772bb216c68358f1b063dc9a0791446721 (patch)
tree6b9e6c2acf66756eb8042658e8f73082ede0faea /unix
parent267d2eee7de9605505f3e87be3a05cc5c3a70dcb (diff)
downloadtcl-075689772bb216c68358f1b063dc9a0791446721.zip
tcl-075689772bb216c68358f1b063dc9a0791446721.tar.gz
tcl-075689772bb216c68358f1b063dc9a0791446721.tar.bz2
* generic/tclFileName.c (Tcl_GlobObjCmd): [Bug 771840]
* generic/tclPathObj.c (Tcl_FSConvertToPathType):[Bug 771947] * unix/tclUnixFCmd.c (GetModeFromPermString): [Bug 771949] Silence compiler warnings about unreached lines. FossilOrigin-Name: 31e59a0126c40c0865cc35a86f4aa2e905a74215
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixFCmd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index 7b26c08..f15b573 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.29 2003/05/14 19:21:30 das Exp $
+ * RCS: @(#) $Id: tclUnixFCmd.c,v 1.30 2003/07/16 15:29:09 dgp Exp $
*
* Portions of this code were derived from NetBSD source code which has
* the following copyright notice:
@@ -1624,7 +1624,6 @@ GetModeFromPermString(interp, modeStringPtr, modePtr)
continue;
default :
return TCL_ERROR;
- break;
}
}
/* what */
@@ -1648,7 +1647,6 @@ GetModeFromPermString(interp, modeStringPtr, modePtr)
break;
default :
return TCL_ERROR;
- break;
}
if (*(modeStringPtr+n+i) == ',') {
i++;