From: Ian Jackson Date: Sun, 30 May 2021 23:41:37 +0000 (+0100) Subject: sshkeys: Make MgmtKeyReport fields pub (!) X-Git-Tag: otter-0.7.0~179 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b278b57db133d1fce401e04648e33a4685ef607d;p=otter.git sshkeys: Make MgmtKeyReport fields pub (!) Signed-off-by: Ian Jackson --- 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 {