minor format fix

This commit is contained in:
kwantam
2020-09-12 20:34:21 -07:00
committed by Dirkjan Ochtman
parent 3601881e7b
commit c365013b07
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ pub trait Session: Send + Sized {
&self,
output: &mut [u8],
label: &[u8],
context: Option<&[u8]>
context: Option<&[u8]>,
) -> Result<(), Self::ExportKeyingMaterialError>;
}
+1 -1
View File
@@ -225,7 +225,7 @@ impl crypto::Session for TlsSession {
&self,
output: &mut [u8],
label: &[u8],
context: Option<&[u8]>
context: Option<&[u8]>,
) -> Result<(), Self::ExportKeyingMaterialError> {
let session: &dyn rustls::Session = match &self.inner {
SessionKind::Client(s) => s,