Skip to content

Commit

Permalink
make members of status::ErrorMsgContent public (#1629)
Browse files Browse the repository at this point in the history
Co-authored-by: Gerald Richter <[email protected]>
  • Loading branch information
richterger and Gerald Richter authored Jan 3, 2025
1 parent 994c01c commit eb1d440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmpv2/src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ pub struct PkiStatusInfo<'a> {
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct ErrorMsgContent<'a> {
pki_status_info: PkiStatusInfo<'a>,
error_code: Option<u64>,
error_details: Option<PkiFreeText<'a>>,
pub pki_status_info: PkiStatusInfo<'a>,
pub error_code: Option<u64>,
pub error_details: Option<PkiFreeText<'a>>,
}

/// The `CertConfirmContent` type is defined in [RFC 4210 Section 5.2.18].
Expand Down

0 comments on commit eb1d440

Please sign in to comment.