From c2c8ba9313cf22af37ebe992c2ae889566c5b0e4 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Sat, 23 Jun 2007 08:42:16 +0000 Subject: [PATCH] Sandbox: fix build break. svn path=/trunk/boinc/; revision=12991 --- lib/filesys.C | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/filesys.C b/lib/filesys.C index 5509c285da..8ac0358eb4 100755 --- a/lib/filesys.C +++ b/lib/filesys.C @@ -543,10 +543,13 @@ int remove_project_owned_file_or_dir(const char* path) { return 0; } } -#endif + return ERR_UNLINK; +} +#else int remove_project_owned_file_or_dir(const char*) { return ERR_UNLINK; } +#endif #ifndef _WIN32 int boinc_chown(const char* path, gid_t gid) {