From b278b57db133d1fce401e04648e33a4685ef607d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 31 May 2021 00:41:37 +0100 Subject: [PATCH] sshkeys: Make MgmtKeyReport fields pub (!) Signed-off-by: Ian Jackson --- src/sshkeys.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sshkeys.rs b/src/sshkeys.rs index 9827ee80..35780caf 100644 --- a/src/sshkeys.rs +++ b/src/sshkeys.rs @@ -200,10 +200,10 @@ impl PerScope { #[derive(Debug,Clone,Serialize,Deserialize)] pub struct MgmtKeyReport { - key: KeySpec, - data: PubData, - comment: Comment, - problem: Option, + pub key: KeySpec, + pub data: PubData, + pub comment: Comment, + pub problem: Option, } macro_rules! def_pskeys_get { -- 2.30.2