From 5b11ac0f4c70116019c0156ffb65fb5dffe4ebba Mon Sep 17 00:00:00 2001 From: Dan Moore Date: Mon, 27 Apr 2015 12:14:09 -0700 Subject: [PATCH] Moved __APPLE__ #endif to correct position --- src/s3fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s3fs.cpp b/src/s3fs.cpp index 778c618..53368a6 100644 --- a/src/s3fs.cpp +++ b/src/s3fs.cpp @@ -2745,11 +2745,11 @@ static void* s3fs_init(struct fuse_conn_info* conn) if((unsigned int)conn->capable & FUSE_CAP_ATOMIC_O_TRUNC){ conn->want |= FUSE_CAP_ATOMIC_O_TRUNC; } + #endif // cache if(is_remove_cache && !FdManager::DeleteCacheDirectory()){ DPRNINFO("Could not inilialize cache directory."); } - #endif return NULL; }