diff --git a/client/main.C b/client/main.C index 60aa2ec9a2..9f5d5c9fa9 100644 --- a/client/main.C +++ b/client/main.C @@ -770,8 +770,13 @@ int main(int argc, char** argv) { "File ownership or permissions are set in a way that\n" "does not allow sandboxed execution of BOINC applications.\n" "To use BOINC anyway, use the -insecure command line option.\n" - "To change ownership/permission, reinstall BOINC or run\n" - " the shell script Mac_SA_Secure.sh.\n" + "To change ownership/permission, reinstall BOINC" +#ifdef __APPLE__ + " or run\n the shell script Mac_SA_Secure.sh" +#elif defined linux + " or run\n the shell script secure.sh" +#endif + ".\n" ); return ERR_USER_PERMISSION; }