summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-01-22 11:45:40 +0100
committerThomas Haller <thaller@redhat.com>2016-01-22 11:48:39 +0100
commit5bc95bdcbd2c21498946062d963b86ffb5a89779 (patch)
tree840e04a30863b78cae70bc02a983250fb9dcd9a4
parent0a9082e26d6e831be038f1b450472e0cdd22dcd6 (diff)
downloadnetwork-manager-applet-5bc95bdcbd2c21498946062d963b86ffb5a89779.tar.gz
c-e: fix vlan page to disallow reserved vlan-id 4095
Valid vlan ids range from 0 to 4094. 4095 is reserved.
-rw-r--r--src/connection-editor/ce-page-vlan.ui2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection-editor/ce-page-vlan.ui b/src/connection-editor/ce-page-vlan.ui
index 2c600e46..276ac8da 100644
--- a/src/connection-editor/ce-page-vlan.ui
+++ b/src/connection-editor/ce-page-vlan.ui
@@ -7,7 +7,7 @@
<property name="page_increment">10</property>
</object>
<object class="GtkAdjustment" id="vlan_id_adjustment">
- <property name="upper">4095</property>
+ <property name="upper">4094</property>
<property name="step_increment">1</property>
<property name="page_increment">10</property>
</object>