Fix another typo in bpm print function

This commit is contained in:
Philipp Deppenwiese 2021-02-23 14:24:31 +01:00
parent 6703cb1936
commit 8b297408d7
1 changed files with 2 additions and 2 deletions

View File

@ -43,9 +43,9 @@ func (bpm Manifest) Print() {
}
if bpm.PMSE.Signature.DataTotalSize() < 1 {
fmt.Printf("%v\n", bpm.PrettyString(1, true, pretty.OptionOmitKeySignature(true)))
fmt.Printf("%v\n", bpm.PMSE.PrettyString(1, true, pretty.OptionOmitKeySignature(true)))
fmt.Printf(" --PMSE--\n\tBoot Policy Manifest not signed!\n\n")
} else {
fmt.Printf("%v\n", bpm.PrettyString(1, true, pretty.OptionOmitKeySignature(false)))
fmt.Printf("%v\n", bpm.PMSE.PrettyString(1, true, pretty.OptionOmitKeySignature(false)))
}
}