1
0
forked from pool/boinc-client
boinc-client/boinc-guirpcauth.patch
Sascha Manns d7fb2f46f3 - Rewritten the Spec based on Malcolm Lewis Improvements (THX)
- Removed boinc-bnc_465676.patch (Fixed Upstream)
- Removed boinc-bnc_465676.patch (Fixed Upstream)
- Removed boinc-client-NotebookWxPanel.patch (Fixed Upstream)
- Removed boinc-client-wxWindowListNode.patch (Fixed Upstream)

 
- Fix boinc-manager-lang requires
 

 
- Major spec file makeover
- Updated version
- Cleaned up patches
- Fixed most deprecated conversion from string constant to 'char*'

OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=7
2011-04-28 17:29:54 +00:00

17 lines
673 B
Diff

--- client/gui_rpc_server.cpp 2010-06-18 11:45:45.000000000 -0500
+++ client/gui_rpc_server.cpp.orig 2010-10-04 13:23:39.000000000 -0500
@@ -146,12 +146,7 @@
// 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
}
}