swtpm_setup: fix missing space after --vmid parameter

The extern cert program was called with --vmid <foo>--tpm-spec-family ...
and failed due to a missing whitespace. This patch fixes it.

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
This commit is contained in:
Stefan Berger 2018-04-23 13:55:03 -04:00
parent f6accfb869
commit a6780589b4

View File

@ -184,7 +184,7 @@ call_create_certs()
logparam="--logfile $LOGFILE"
fi
params+="$(get_tpm_spec_parameters) "
params="${params} $(get_tpm_spec_parameters)"
[ $? -ne 0 ] && return 1
if [ $((flags & SETUP_EK_CERT_F)) -ne 0 ] || \