Sandbox: fix build break.

svn path=/trunk/boinc/; revision=12991
This commit is contained in:
Charlie Fenton 2007-06-23 08:42:16 +00:00
parent 7671a20f37
commit c2c8ba9313
1 changed files with 4 additions and 1 deletions

View File

@ -543,10 +543,13 @@ int remove_project_owned_file_or_dir(const char* path) {
return 0; return 0;
} }
} }
#endif return ERR_UNLINK;
}
#else
int remove_project_owned_file_or_dir(const char*) { int remove_project_owned_file_or_dir(const char*) {
return ERR_UNLINK; return ERR_UNLINK;
} }
#endif
#ifndef _WIN32 #ifndef _WIN32
int boinc_chown(const char* path, gid_t gid) { int boinc_chown(const char* path, gid_t gid) {