vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 367e1ce289cea6a3251b7350a6707c700bd8a544
parent c47d9f65937df1d2d7f4f7b9a679a887a3d182bc
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Mon,  9 Jan 2023 20:17:06 +0100

Merge pull request #3065 from BlackDex/future-clippy-fixes

Resolve uninlined_format_args clippy warnings
Diffstat:
Mclippy.toml | 2+-
Msrc/config.rs | 12------------
2 files changed, 1 insertion(+), 13 deletions(-)

diff --git a/clippy.toml b/clippy.toml @@ -1 +1 @@ -msrv = "1.60.0" +msrv = "1.61.0" diff --git a/src/config.rs b/src/config.rs @@ -684,18 +684,6 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> { } } - if let Some(log_file) = &cfg.log_file { - if std::fs::OpenOptions::new().append(true).create(true).open(log_file).is_err() { - err!("Unable to write to log file", log_file); - } - } - - if let Some(log_file) = &cfg.log_file { - if std::fs::OpenOptions::new().append(true).create(true).open(log_file).is_err() { - err!("Unable to write to log file", log_file); - } - } - let dom = cfg.domain.to_lowercase(); if !dom.starts_with("http://") && !dom.starts_with("https://") { err!(