From c985b5e4d0452f613778c26995dc155f2efa9644 Mon Sep 17 00:00:00 2001 From: LutzFinsterle2019 <46425320+LutzFinsterle2019@users.noreply.github.com> Date: Sat, 12 Jan 2019 10:19:48 +0100 Subject: [PATCH] Corrected Comment to C++ style --- src/s3fs_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s3fs_util.cpp b/src/s3fs_util.cpp index 377af19..34c5d35 100644 --- a/src/s3fs_util.cpp +++ b/src/s3fs_util.cpp @@ -815,7 +815,7 @@ mode_t get_mode(headers_t& meta, const char* path, bool checkdir, bool forcedir) strConType = strConType.substr(0, pos); } if(strConType == "application/x-directory" - || strConType == "httpd/unix-directory"){ # Nextcloud uses this MIME type for directory objects when mounting bucket as external Storage + || strConType == "httpd/unix-directory"){ // Nextcloud uses this MIME type for directory objects when mounting bucket as external Storage mode |= S_IFDIR; }else if(path && 0 < strlen(path) && '/' == path[strlen(path) - 1]){ if(strConType == "binary/octet-stream" || strConType == "application/octet-stream"){