*** empty log message ***

svn path=/trunk/boinc/; revision=4277
This commit is contained in:
Rom Walton 2004-10-01 00:51:30 +00:00
parent 5c1c1439d2
commit ae203addc6
1 changed files with 2 additions and 2 deletions

View File

@ -720,9 +720,9 @@ RPC_CLIENT::~RPC_CLIENT() {
//
void RPC_CLIENT::close() {
#ifdef _WIN32
closesocket(sock);
::closesocket(sock);
#else
close(sock);
::close(sock);
#endif
}