When reading in an XML definition for a SCSI target device, the name
property of struct scsi_target refers to the @target element.
Let's fix this obvious typo and also extend the XML schema to provide
validation.
Signed-off-by: Bjoern Walk <bwalk@linux.vnet.ibm.com>
<ref name="capusbinterface"/>
<ref name="capnet"/>
<ref name="capscsihost"/>
+ <ref name="capscsitarget"/>
<ref name="capscsi"/>
<ref name="capstorage"/>
</choice>
</optional>
</define>
+ <define name='capscsitarget'>
+ <attribute name='type'>
+ <value>scsi_target</value>
+ </attribute>
+
+ <element name='target'>
+ <text/>
+ </element>
+ </define>
+
<define name='capscsi'>
<attribute name='type'>
<value>scsi</value>
orignode = ctxt->node;
ctxt->node = node;
- data->scsi_target.name = virXPathString("string(./name[1])", ctxt);
+ data->scsi_target.name = virXPathString("string(./target[1])", ctxt);
if (!data->scsi_target.name) {
virReportError(VIR_ERR_INTERNAL_ERROR,
_("no target name supplied for '%s'"),