From 03b7ba34281c2df051b795961a0dbe59ea2099e9 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Thu, 11 Apr 2024 13:53:19 -0700 Subject: [PATCH] ssh-key: fixup EcdsaPrivateKey Debug impl (#210) --- ssh-key/src/private/ecdsa.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-key/src/private/ecdsa.rs b/ssh-key/src/private/ecdsa.rs index 33d196b..5b64d7f 100644 --- a/ssh-key/src/private/ecdsa.rs +++ b/ssh-key/src/private/ecdsa.rs @@ -95,7 +95,7 @@ impl Eq for EcdsaPrivateKey {} impl fmt::Debug for EcdsaPrivateKey { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Ed25519PrivateKey").finish_non_exhaustive() + f.debug_struct("EcdsaPrivateKey").finish_non_exhaustive() } }