Merge pull request #1565 from jrmithdobbs/socks5-fix

Fix OBO in socks5 auth proposal.
This commit is contained in:
Pieter Wuille 2012-07-07 07:19:53 -07:00
commit 0ba5bacd0c
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ bool static Socks5(string strDest, int port, SOCKET& hSocket)
}
char pszSocks5Init[] = "\5\1\0";
char *pszSocks5 = pszSocks5Init;
ssize_t nSize = sizeof(pszSocks5Init);
ssize_t nSize = sizeof(pszSocks5Init) - 1;
ssize_t ret = send(hSocket, pszSocks5, nSize, MSG_NOSIGNAL);
if (ret != nSize)