diff options
| author | Fuwn <[email protected]> | 2022-05-18 01:52:36 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-18 01:52:36 +0000 |
| commit | 11405ce0600d61f3772a7efe7fbd3de4cc2bf892 (patch) | |
| tree | 24ebda9cc59ae51b4e87fdde688fe009eaf420af /src/request/status.rs | |
| parent | chore(makefile): use --all-features (diff) | |
| download | germ-11405ce0600d61f3772a7efe7fbd3de4cc2bf892.tar.xz germ-11405ce0600d61f3772a7efe7fbd3de4cc2bf892.zip | |
fix: global clippy lint fixes
Diffstat (limited to 'src/request/status.rs')
| -rw-r--r-- | src/request/status.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/request/status.rs b/src/request/status.rs index b2065ed..8a18ce7 100644 --- a/src/request/status.rs +++ b/src/request/status.rs @@ -72,7 +72,7 @@ impl From<Status> for i32 { Status::ClientCertificateRequired => 60, Status::CertificateNotAuthorised => 61, Status::CertificateNotValid => 62, - _ => 0, + Status::Unsupported => 0, } } } |