summaryrefslogtreecommitdiff
path: root/src/VBox/Main/xml/VirtualBox-settings.xsd
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-11-02 11:07:14 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-11-02 11:07:14 +0000
commit10771fe6aac15fc15f183536d45e4a09f7fe4384 (patch)
tree541f3b76367b79e639492997bc5bc6dbeaff6dc0 /src/VBox/Main/xml/VirtualBox-settings.xsd
parentfa058f7fc15322a52cbab807be9bbb9ef2d58934 (diff)
downloadVirtualBox-svn-10771fe6aac15fc15f183536d45e4a09f7fe4384.tar.gz
Main/Settings: Network name settings have to be optional, otherwise there is trouble with inaccessible VMs when the settings are saved before the network name is updated. Happens easily with VBoxManage.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@64517 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/xml/VirtualBox-settings.xsd')
-rw-r--r--src/VBox/Main/xml/VirtualBox-settings.xsd8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/VBox/Main/xml/VirtualBox-settings.xsd b/src/VBox/Main/xml/VirtualBox-settings.xsd
index f6a8e35ac74..8145cd9dabf 100644
--- a/src/VBox/Main/xml/VirtualBox-settings.xsd
+++ b/src/VBox/Main/xml/VirtualBox-settings.xsd
@@ -936,19 +936,19 @@
</xsd:complexType>
<xsd:complexType name="TNetNATNetwork">
- <xsd:attribute name="name" type="xsd:string" use="required"/>
+ <xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="TNetBridged">
- <xsd:attribute name="name" type="xsd:string" use="required"/>
+ <xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="TNetInternal">
- <xsd:attribute name="name" type="xsd:string" use="required"/>
+ <xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="TNetHostOnly">
- <xsd:attribute name="name" type="xsd:string" use="required"/>
+ <xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="TNetGeneric">