aboutsummaryrefslogtreecommitdiff
path: root/src/util/config.rs
diff options
context:
space:
mode:
authorJonathan Davies <jpds@protonmail.com>2023-05-09 20:49:34 +0100
committerJonathan Davies <jpds@protonmail.com>2023-05-09 20:49:34 +0100
commitc783194e8b8c3263fad579a85ea07d62e63b16be (patch)
tree362189dcfde317ef4dd0613ab621684469c17168 /src/util/config.rs
parentb925f53dc3b0bae77aa3f73e581faace2eb3b21a (diff)
downloadgarage-c783194e8b8c3263fad579a85ea07d62e63b16be.tar.gz
garage-c783194e8b8c3263fad579a85ea07d62e63b16be.zip
*: apply clippy recommendations.
Diffstat (limited to 'src/util/config.rs')
-rw-r--r--src/util/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/config.rs b/src/util/config.rs
index 2176353e..95835bbb 100644
--- a/src/util/config.rs
+++ b/src/util/config.rs
@@ -223,7 +223,7 @@ fn secret_from_file(
#[cfg(unix)]
if std::env::var("GARAGE_ALLOW_WORLD_READABLE_SECRETS").as_deref() != Ok("true") {
use std::os::unix::fs::MetadataExt;
- let metadata = std::fs::metadata(&file_path)?;
+ let metadata = std::fs::metadata(file_path)?;
if metadata.mode() & 0o077 != 0 {
return Err(format!("File {} is world-readable! (mode: 0{:o}, expected 0600)\nRefusing to start until this is fixed, or environment variable GARAGE_ALLOW_WORLD_READABLE_SECRETS is set to true.", file_path, metadata.mode()).into());
}