diff options
author | stanton <stanton> | 1999-04-15 22:38:46 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-04-15 22:38:46 (GMT) |
commit | 743017523886608c1403479b0676d469b8f998ac (patch) | |
tree | e29ecad719da73c67d437be2a057cc01dca684e9 /mac/tclMacFCmd.c | |
parent | ae56f9fc8840d99814f8fc8986fe6445ec9a57e6 (diff) | |
download | tcl-743017523886608c1403479b0676d469b8f998ac.zip tcl-743017523886608c1403479b0676d469b8f998ac.tar.gz tcl-743017523886608c1403479b0676d469b8f998ac.tar.bz2 |
* Merge 8.0.5 changes:
- Mac changes for final release
- Minor fixes to tools configure file
* win/tclWinSock.c: Apply patch to allow write access to a socket
if FD_WRITE is sent but FD_CONNECT is not. Some strange problem
with either Win32 or a socket driver. [Bug: 1664 1776]
Diffstat (limited to 'mac/tclMacFCmd.c')
-rw-r--r-- | mac/tclMacFCmd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mac/tclMacFCmd.c b/mac/tclMacFCmd.c index 92cce37..7e8fd22 100644 --- a/mac/tclMacFCmd.c +++ b/mac/tclMacFCmd.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: tclMacFCmd.c,v 1.2 1998/09/14 18:40:05 stanton Exp $ + * RCS: @(#) $Id: tclMacFCmd.c,v 1.3 1999/04/15 22:38:47 stanton Exp $ */ #include "tclInt.h" @@ -72,8 +72,8 @@ CONST TclFileAttrProcs tclpFileAttrProcs[] = { static pascal Boolean CopyErrHandler _ANSI_ARGS_((OSErr error, short failedOperation, short srcVRefNum, long srcDirID, - StringPtr srcName, short dstVRefNum, - long dstDirID,StringPtr dstName)); + const unsigned char *srcName, short dstVRefNum, + long dstDirID, const unsigned char *dstName)); OSErr FSpGetFLockCompat _ANSI_ARGS_((const FSSpec *specPtr, Boolean *lockedPtr)); static OSErr GenerateUniqueName _ANSI_ARGS_((short vRefNum, @@ -604,10 +604,10 @@ CopyErrHandler( short failedOperation, /* operation that caused the error */ short srcVRefNum, /* volume ref number of source */ long srcDirID, /* directory id of source */ - StringPtr srcName, /* name of source */ + const unsigned char *srcName, /* name of source */ short dstVRefNum, /* volume ref number of dst */ long dstDirID, /* directory id of dst */ - StringPtr dstName) /* name of dst directory */ + const unsigned char *dstName) /* name of dst directory */ { return true; } |