--- np2/win9x/sstp.cpp 2005/03/20 13:12:49 1.5 +++ np2/win9x/sstp.cpp 2007/01/08 08:52:21 1.6 @@ -105,7 +105,7 @@ sstp_senderror:; void sstp_connect(void) { if (hSocket != INVALID_SOCKET) { - send(hSocket, sstpstr, strlen(sstpstr), 0); + send(hSocket, sstpstr, (int)strlen(sstpstr), 0); } } @@ -208,7 +208,7 @@ BOOL sstp_sendonly(const OEMCHAR *msg) { #else OEMSPRINTF(msgstr, sendermes, msg); #endif - send(lSocket, msgstr, strlen(msgstr), 0); + send(lSocket, msgstr, (int)strlen(msgstr), 0); ret = SUCCESS; } closesocket(lSocket);