diff options
author | Thomas Haller <thaller@redhat.com> | 2016-01-22 11:45:40 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-01-22 11:48:39 +0100 |
commit | 5bc95bdcbd2c21498946062d963b86ffb5a89779 (patch) | |
tree | 840e04a30863b78cae70bc02a983250fb9dcd9a4 | |
parent | 0a9082e26d6e831be038f1b450472e0cdd22dcd6 (diff) | |
download | network-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.ui | 2 |
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> |