diff options
author | welch <welch> | 1998-08-04 23:22:31 (GMT) |
---|---|---|
committer | welch <welch> | 1998-08-04 23:22:31 (GMT) |
commit | d4f36b089a76103bab4a363f025958bc5f0249ba (patch) | |
tree | c45924f3060222e87cba3b7aebeb083f1e41342a | |
parent | 6f808a629f58f0e34a131e8d70c7ec986a555cfd (diff) | |
download | tcl-d4f36b089a76103bab4a363f025958bc5f0249ba.zip tcl-d4f36b089a76103bab4a363f025958bc5f0249ba.tar.gz tcl-d4f36b089a76103bab4a363f025958bc5f0249ba.tar.bz2 |
*** empty log message ***
-rw-r--r-- | unix/configure.in | 2 | ||||
-rw-r--r-- | unix/tclUnixChan.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.in b/unix/configure.in index 4b5a5bd..1809f10 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -7,7 +7,7 @@ AC_INIT(../generic/tcl.h) TCL_VERSION=8.0 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=0 -TCL_PATCH_LEVEL=".3-4" +TCL_PATCH_LEVEL=".3-5" VERSION=${TCL_VERSION} if test "${prefix}" = "NONE"; then diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index 52af100..b846169 100644 --- a/unix/tclUnixChan.c +++ b/unix/tclUnixChan.c @@ -2604,7 +2604,7 @@ TclOpen(path, oflag, mode) { int result; while (1) { - result = open(path, oflag, mode); + result = open(path, oflag, (mode_t)mode); if ((result != -1) || (errno != EINTR)) { return result; } |