network: Fix logic in showing IP6 route metric.
The logic was inverted and ensured the value was always <= 0.
This commit is contained in:
parent
3b9954ab37
commit
f1d892f46b
1 changed files with 5 additions and 4 deletions
|
@ -432,7 +432,7 @@ add_routes_box (CEPageIP6 *self)
|
|||
|
||||
route = nm_setting_ip_config_get_route (self->setting, i);
|
||||
prefix = g_strdup_printf ("%u", nm_ip_route_get_prefix (route));
|
||||
metric = g_strdup_printf ("%u", (guint32) MIN (0, nm_ip_route_get_metric (route)));
|
||||
metric = g_strdup_printf ("%" G_GINT64_FORMAT, nm_ip_route_get_metric (route));
|
||||
add_route_row (self, nm_ip_route_get_dest (route),
|
||||
prefix,
|
||||
nm_ip_route_get_next_hop (route),
|
||||
|
@ -662,7 +662,8 @@ ui_to_setting (CEPageIP6 *self)
|
|||
const gchar *text_prefix;
|
||||
const gchar *text_gateway;
|
||||
const gchar *text_metric;
|
||||
guint32 prefix, metric;
|
||||
guint32 prefix;
|
||||
gint64 metric;
|
||||
gchar *end;
|
||||
NMIPRoute *route;
|
||||
|
||||
|
@ -706,10 +707,10 @@ ui_to_setting (CEPageIP6 *self)
|
|||
widget_unset_error (g_object_get_data (G_OBJECT (row), "gateway"));
|
||||
}
|
||||
|
||||
metric = 0;
|
||||
metric = -1;
|
||||
if (*text_metric) {
|
||||
errno = 0;
|
||||
metric = strtoul (text_metric, NULL, 10);
|
||||
metric = g_ascii_strtoull (text_metric, NULL, 10);
|
||||
if (errno) {
|
||||
widget_set_error (g_object_get_data (G_OBJECT (row), "metric"));
|
||||
ret = FALSE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue