1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

conf: fs: allow missing accessmode in the formatter

So far VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH is always set
in virDomainFSDefPostParse, but future commits aim to change
that.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Ján Tomko 2020-09-07 17:12:56 +02:00
parent c70fbbbecc
commit e581703148

View File

@ -25265,9 +25265,9 @@ virDomainFSDefFormat(virBuffer *buf,
return -1;
}
virBufferAsprintf(buf,
"<filesystem type='%s' accessmode='%s'",
type, accessmode);
virBufferAsprintf(buf, "<filesystem type='%s'", type);
if (def->accessmode != VIR_DOMAIN_FS_ACCESSMODE_DEFAULT)
virBufferAsprintf(buf, " accessmode='%s'", accessmode);
if (def->model) {
virBufferAsprintf(buf, " model='%s'",
virDomainFSModelTypeToString(def->model));