From 779afe5d62cd5f3883a5c6d512f2c2bedb49e09b Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Sun, 6 Aug 2023 22:25:10 +0900 Subject: [PATCH] Make help more consistent (#2251) --- src/s3fs_cred.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/s3fs_cred.cpp b/src/s3fs_cred.cpp index 9efbaf6..e3c2f29 100644 --- a/src/s3fs_cred.cpp +++ b/src/s3fs_cred.cpp @@ -29,6 +29,7 @@ #include "common.h" #include "s3fs_cred.h" +#include "s3fs_help.h" #include "s3fs_logger.h" #include "curl.h" #include "string_util.h" @@ -1522,6 +1523,7 @@ bool S3fsCred::CheckForbiddenBucketParams() // The first plain argument is the bucket if(bucket_name.empty()){ S3FS_PRN_EXIT("missing BUCKET argument."); + show_usage(); return false; }