[network-manager-applet] editor: must add prefix string (not int) to list store
- From: Dan Williams <dcbw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-applet] editor: must add prefix string (not int) to list store
- Date: Sat, 28 Feb 2015 14:20:13 +0000 (UTC)
commit b0ccd606030a3ce6d9ad6c24d359ee21b725b095
Author: Dan Williams <dcbw redhat com>
Date: Sat Feb 28 08:19:20 2015 -0600
editor: must add prefix string (not int) to list store
src/connection-editor/page-ip4.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/src/connection-editor/page-ip4.c b/src/connection-editor/page-ip4.c
index d28475d..6f1b48f 100644
--- a/src/connection-editor/page-ip4.c
+++ b/src/connection-editor/page-ip4.c
@@ -370,16 +370,19 @@ populate_ui (CEPageIP4 *self)
store = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
for (i = 0; i < nm_setting_ip_config_get_num_addresses (setting); i++) {
NMIPAddress *addr = nm_setting_ip_config_get_address (setting, i);
+ char buf[32];
if (!addr) {
g_warning ("%s: empty IP4 Address structure!", __func__);
continue;
}
+ snprintf (buf, sizeof (buf), "%u", nm_ip_address_get_prefix (addr));
+
gtk_list_store_append (store, &model_iter);
gtk_list_store_set (store, &model_iter,
COL_ADDRESS, nm_ip_address_get_address (addr),
- COL_PREFIX, nm_ip_address_get_prefix (addr),
+ COL_PREFIX, buf,
/* FIXME */
COL_GATEWAY, i == 0 ? nm_setting_ip_config_get_gateway (setting) : NULL,
-1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]