diff options
author | Kim Altintop <kim@eagain.io> | 2023-03-29 18:37:04 +0200 |
---|---|---|
committer | Kim Altintop <kim@eagain.io> | 2023-03-29 18:37:04 +0200 |
commit | 607a5609f858cd707dca3a936d80a7a9539b4b5a (patch) | |
tree | 1f842bc11cb130e611d1521d0d3146cbbf1d7e32 /src | |
parent | 1c2e7a3c68fcec8a620e01ac1d4daed87ff7f02d (diff) |
Leftovers
- Missing "use" in README
- Rename IncompatibleSpecVersion to IncompatibleVersion
Signed-off-by: Kim Altintop <kim@eagain.io>
Diffstat (limited to 'src')
-rw-r--r-- | src/metadata/drop.rs | 6 | ||||
-rw-r--r-- | src/metadata/error.rs | 4 | ||||
-rw-r--r-- | src/metadata/identity.rs | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/metadata/drop.rs b/src/metadata/drop.rs index 1341f68..ae9aefd 100644 --- a/src/metadata/drop.rs +++ b/src/metadata/drop.rs @@ -142,7 +142,7 @@ impl Drop { use error::Verification::*; if !FMT_VERSION.is_compatible(&self.fmt_version) { - return Err(IncompatibleSpecVersion); + return Err(IncompatibleVersion); } let canonical = self.canonicalise()?; @@ -174,7 +174,7 @@ impl Drop { } } if !FMT_VERSION.is_compatible(&mirrors.signed.fmt_version) { - return Err(IncompatibleSpecVersion); + return Err(IncompatibleVersion); } let payload = Sha512::digest(mirrors.signed.canonicalise()?); @@ -198,7 +198,7 @@ impl Drop { } } if !FMT_VERSION.is_compatible(&alt.signed.fmt_version) { - return Err(IncompatibleSpecVersion); + return Err(IncompatibleVersion); } let payload = Sha512::digest(alt.signed.canonicalise()?); diff --git a/src/metadata/error.rs b/src/metadata/error.rs index 66173f9..d2040f2 100644 --- a/src/metadata/error.rs +++ b/src/metadata/error.rs @@ -20,8 +20,8 @@ pub enum SigId { #[derive(Debug, Error)] #[non_exhaustive] pub enum Verification { - #[error("incompatible spec version")] - IncompatibleSpecVersion, + #[error("incompatible format version")] + IncompatibleVersion, #[error("canonicalisation failed")] Canonicalise(#[from] Canonicalise), diff --git a/src/metadata/identity.rs b/src/metadata/identity.rs index 9e17213..8ded144 100644 --- a/src/metadata/identity.rs +++ b/src/metadata/identity.rs @@ -235,10 +235,10 @@ impl Identity { where F: FnMut(&ContentHash) -> io::Result<Signed<Self>>, { - use error::Verification::IncompatibleSpecVersion; + use error::Verification::IncompatibleVersion; if !FMT_VERSION.is_compatible(&self.fmt_version) { - return Err(IncompatibleSpecVersion); + return Err(IncompatibleVersion); } let canonical = self.canonicalise()?; |