mirror of https://github.com/BOINC/boinc.git
Mac: Fix build breaks
svn path=/trunk/boinc/; revision=26134
This commit is contained in:
parent
aa289f0916
commit
6b2268e0d9
|
@ -6020,3 +6020,10 @@ David 20 Sept 2012
|
|||
- A bunch of tweaks from Steffen Moller, e.g. using MAXPATHLEN
|
||||
|
||||
various files
|
||||
|
||||
Charlie 21 Sep 2012
|
||||
- Mac: Fix build breaks introduced by above changes; path_to_error
|
||||
arg is modified by CheckNestedDirectories() so can't be const.
|
||||
|
||||
client/
|
||||
check_security.cpp
|
||||
|
|
|
@ -42,7 +42,7 @@ bool IsUserInGroupBM();
|
|||
static int CheckNestedDirectories(
|
||||
char * basepath, int depth,
|
||||
int use_sandbox, int isManager,
|
||||
cont char * path_to_error
|
||||
char * path_to_error
|
||||
);
|
||||
|
||||
#if (! defined(__WXMAC__) && ! defined(_MAC_INSTALLER))
|
||||
|
@ -501,7 +501,7 @@ saverName[2] = "Progress Thru Processors";
|
|||
}
|
||||
|
||||
|
||||
static int CheckNestedDirectories(char * basepath, int depth,
|
||||
static int CheckNestedDirectories(char * basepath, int depth,
|
||||
int use_sandbox, int isManager,
|
||||
char * path_to_error
|
||||
) {
|
||||
|
|
Loading…
Reference in New Issue