Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(cosfs, 1.0.9)
AC_INIT(cosfs, 1.0.10)
AC_CONFIG_HEADER([config.h])

AC_CANONICAL_SYSTEM
Expand Down
5 changes: 1 addition & 4 deletions src/s3fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4879,10 +4879,7 @@ int main(int argc, char* argv[])
S3FS_PRN_EXIT("specifying both public_bucket and the access keys options is invalid.");
exit(EXIT_FAILURE);
}
if(passwd_file.size() > 0 && S3fsCurl::IsSetAccessKeyId()){
S3FS_PRN_EXIT("specifying both passwd_file and the access keys options is invalid.");
// exit(EXIT_FAILURE);
}

if(!S3fsCurl::IsPublicBucket()){
if(EXIT_SUCCESS != get_access_keys()){
exit(EXIT_FAILURE);
Expand Down