From 1ddbd4d6bb28b779678f68fe71321706b4514979 Mon Sep 17 00:00:00 2001 From: Takeshi Nakatani Date: Fri, 6 May 2016 00:36:54 +0000 Subject: [PATCH] Fixed 'load_sse_c' option not working - #388 --- src/s3fs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/s3fs.cpp b/src/s3fs.cpp index c6c1075..093777d 100644 --- a/src/s3fs.cpp +++ b/src/s3fs.cpp @@ -4433,6 +4433,7 @@ static int my_fuse_opt_proc(void* data, const char* arg, int key, struct fuse_ar S3FS_PRN_EXIT("failed to load use_sse custom key file(%s).", ssecfile); return -1; } + return 0; } if(0 == STR2NCMP(arg, "ssl_verify_hostname=")){ long sslvh = static_cast(s3fs_strtoofft(strchr(arg, '=') + sizeof(char)));