forked from pool/boinc-client
5024a320b2
fix for bnc#689499 OBS-URL: https://build.opensuse.org/request/show/102548 OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=17
19 lines
741 B
Diff
19 lines
741 B
Diff
Index: client/gui_rpc_server.cpp
|
|
===================================================================
|
|
--- client/gui_rpc_server.cpp.orig
|
|
+++ client/gui_rpc_server.cpp
|
|
@@ -146,12 +146,7 @@ int GUI_RPC_CONN_SET::get_password() {
|
|
// they can cause code to execute as this user.
|
|
// So better protect it.
|
|
//
|
|
- if (g_use_sandbox) {
|
|
- // Allow group access so authorized administrator can modify it
|
|
- chmod(GUI_RPC_PASSWD_FILE, S_IRUSR|S_IWUSR | S_IRGRP | S_IWGRP);
|
|
- } else {
|
|
- chmod(GUI_RPC_PASSWD_FILE, S_IRUSR|S_IWUSR);
|
|
- }
|
|
+ chmod(GUI_RPC_PASSWD_FILE, S_IRUSR|S_IWUSR | S_IRGRP | S_IWGRP);
|
|
#endif
|
|
}
|
|
}
|