diff --git a/CHANGELOG.md b/CHANGELOG.md index 78bcbee..4597736 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## (TBD) unftp v0.14.1 +## 2023-02-01 unftp v0.14.1 - Upgraded dependencies including all crates from https://github.com/bolcom/libunftp The main change here is [caching of access tokens in the GCS backend](https://github.com/bolcom/libunftp/issues/384) diff --git a/src/main.rs b/src/main.rs index 714bb79..ce17a2e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -59,7 +59,7 @@ use unftp_sbe_gcs::options::AuthMethod; fn load_user_file( path: &str, ) -> Result> { - let mut f = fs::File::open(&path)?; + let mut f = fs::File::open(path)?; // The user file can be plaintext, gzipped, or gzipped+base64-encoded // The gzip-base64 format is useful for overcoming configmap size limits in Kubernetes