Mac: Fix build breaks

svn path=/trunk/boinc/; revision=26134
This commit is contained in:
Charlie Fenton 2012-09-21 09:02:14 +00:00
parent aa289f0916
commit 6b2268e0d9
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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
) {