mirror of https://github.com/BOINC/boinc.git
Android compile fix
This commit is contained in:
parent
7e00868161
commit
548c3f30d3
|
@ -246,7 +246,7 @@ int GUI_RPC_CONN_SET::init_unix_domain() {
|
||||||
addr.sun_len = sizeof(addr);
|
addr.sun_len = sizeof(addr);
|
||||||
#endif
|
#endif
|
||||||
strcpy(addr.sun_path, GUI_RPC_FILE);
|
strcpy(addr.sun_path, GUI_RPC_FILE);
|
||||||
socklen_t len = SUN_LEN(&addr);
|
socklen_t len = offsetof(sockaddr_un, sun_path) + strlen(GUI_RPC_FILE);
|
||||||
#endif
|
#endif
|
||||||
unlink(GUI_RPC_FILE);
|
unlink(GUI_RPC_FILE);
|
||||||
if (bind(lsock, (struct sockaddr*)&addr, len) < 0) {
|
if (bind(lsock, (struct sockaddr*)&addr, len) < 0) {
|
||||||
|
|
Loading…
Reference in New Issue