aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/auth.rs5
-rw-r--r--src/main.rs5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/auth.rs b/src/auth.rs
index 040e81f..e526923 100644
--- a/src/auth.rs
+++ b/src/auth.rs
@@ -75,9 +75,8 @@ pub fn match_auth(basic_auth: BasicAuthParams, required_auth: &RequiredAuth) ->
}
/// Return `true` if hashing of `password` by `T` algorithm equals to `hash`
-#[allow(clippy::ptr_arg)]
-pub fn compare_hash<T: Digest>(password: String, hash: &Vec<u8>) -> bool {
- get_hash::<T>(password) == *hash
+pub fn compare_hash<T: Digest>(password: String, hash: &[u8]) -> bool {
+ get_hash::<T>(password) == hash
}
/// Get hash of a `text`
diff --git a/src/main.rs b/src/main.rs
index b7563eb..ea58fc6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -65,7 +65,6 @@ fn main() {
}
}
-#[allow(clippy::block_in_if_condition_stmt)]
fn run() -> Result<(), ContextualError> {
if cfg!(windows) && !Paint::enable_windows_ascii() {
Paint::disable();
@@ -84,12 +83,12 @@ fn run() -> Result<(), ContextualError> {
&& miniserve_config
.path
.symlink_metadata()
- .map_err(|e| {
+ .map_err(|e|
ContextualError::IOError(
"Failed to retrieve symlink's metadata".to_string(),
e,
)
- })?
+ )?
.file_type()
.is_symlink()
{