win compile fix

svn path=/trunk/boinc/; revision=9249
This commit is contained in:
David Anderson 2006-01-16 19:54:44 +00:00
parent bcbdaa5082
commit 425e74453b
2 changed files with 7 additions and 1 deletions

View File

@ -507,3 +507,9 @@ Bruce 16 Jan 2006
host.inc
user/
host_delete.php
David 15 Jan 2006
- compile fix for Win
client/
gui_rpc_server.C

View File

@ -281,7 +281,7 @@ void GUI_RPC_CONN_SET::got_select(FDSET_GROUP& fg) {
}
boinc_socklen_t addr_len = sizeof(addr);
sock = accept(lsock, (struct sockaddr*)&addr, (socklen_t*)&addr_len);
sock = accept(lsock, (struct sockaddr*)&addr, (boinc_socklen_t*)&addr_len);
if (sock == -1) {
return;
}