diff options
author | dgp <dgp@noemail.net> | 2002-01-24 01:34:16 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-01-24 01:34:16 (GMT) |
commit | 6f669a255af5686363a9170f95980c1155a064ea (patch) | |
tree | 12ac28ef35f83ddf346a66dacb686c2c58a86163 /win/tclWinSock.c | |
parent | bf31e30d59b1fd6011b913cec21242bff74d6d71 (diff) | |
download | tcl-6f669a255af5686363a9170f95980c1155a064ea.zip tcl-6f669a255af5686363a9170f95980c1155a064ea.tar.gz tcl-6f669a255af5686363a9170f95980c1155a064ea.tar.bz2 |
Corrections to earlier TIP 27 changes.
Thanks to Andreas Kupries for the feedback.
FossilOrigin-Name: 0c4eacfb569afae1c63fe529403d1583957939ee
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. */ |