diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-24 01:34:16 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-24 01:34:16 (GMT) |
commit | a6b8152740ffe25d2be6a130a03abbedf558538b (patch) | |
tree | 12ac28ef35f83ddf346a66dacb686c2c58a86163 /win/tclWinSock.c | |
parent | 82914a2620307f81f9199eb2e9af70a11dc31ba4 (diff) | |
download | tcl-a6b8152740ffe25d2be6a130a03abbedf558538b.zip tcl-a6b8152740ffe25d2be6a130a03abbedf558538b.tar.gz tcl-a6b8152740ffe25d2be6a130a03abbedf558538b.tar.bz2 |
Corrections to earlier TIP 27 changes.
Thanks to Andreas Kupries for the feedback.
Diffstat (limited to 'win/tclWinSock.c')
-rw-r--r-- | win/tclWinSock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index 6b67271..9fd3034 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinSock.c,v 1.24 2002/01/23 20:46:01 dgp Exp $ + * RCS: @(#) $Id: tclWinSock.c,v 1.25 2002/01/24 01:34:16 dgp Exp $ */ #include "tclWinInt.h" @@ -1471,7 +1471,7 @@ Tcl_OpenTcpServer(interp, port, host, acceptProc, acceptProcData) Tcl_Interp *interp; /* For error reporting - may be * NULL. */ int port; /* Port number to open. */ - COSNT char *host; /* Name of local host. */ + CONST char *host; /* Name of local host. */ Tcl_TcpAcceptProc *acceptProc; /* Callback for accepting connections * from new clients. */ ClientData acceptProcData; /* Data for the callback. */ |