--- np2/win9x/sstp.cpp 2005/03/19 20:46:07 1.4 +++ np2/win9x/sstp.cpp 2007/01/08 08:52:21 1.6 @@ -30,7 +30,7 @@ static HANDLE check_sakura(void) { HANDLE hsakura; - hsakura = OpenMutex(MUTEX_ALL_ACCESS, FALSE, OEMTEXT("sakura")); + hsakura = OpenMutex(MUTEX_ALL_ACCESS, FALSE, _T("sakura")); if (hsakura != NULL) { CloseHandle(hsakura); } @@ -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);