virtcontainers: Fix misspelling in error message

This PR fixes a misspelling in the error message when it tries to run
a system without Confidential computing support.

Fixes #6042

Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
This commit is contained in:
Gabriela Cervantes 2023-01-11 21:58:07 +00:00
parent c6b7f69040
commit fc17d7cc41

View File

@ -434,7 +434,7 @@ func (clh *cloudHypervisor) enableProtection() error {
return errors.New("SEV-SNP protection is not supported by Cloud Hypervisor") return errors.New("SEV-SNP protection is not supported by Cloud Hypervisor")
default: default:
return errors.New("This system doesn't support Confidentian Computing (Guest Protection)") return errors.New("This system doesn't support Confidential Computing (Guest Protection)")
} }
} }