aboutsummaryrefslogtreecommitdiff
path: root/src/peerinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/peerinfo.c')
-rw-r--r--src/peerinfo.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/peerinfo.c b/src/peerinfo.c
index cdbb492b..8892b018 100644
--- a/src/peerinfo.c
+++ b/src/peerinfo.c
@@ -36,8 +36,7 @@
36void 36void
37GNUNET_GTK_peerinfo_processor (void *cls, 37GNUNET_GTK_peerinfo_processor (void *cls,
38 const struct GNUNET_PeerIdentity * peer, 38 const struct GNUNET_PeerIdentity * peer,
39 const struct GNUNET_HELLO_Message * hello, 39 const struct GNUNET_HELLO_Message * hello)
40 uint32_t trust)
41{ 40{
42 GtkListStore *ls; 41 GtkListStore *ls;
43 GtkTreeModel *tm; 42 GtkTreeModel *tm;
@@ -79,10 +78,9 @@ GNUNET_GTK_peerinfo_processor (void *cls,
79 gtk_list_store_set (ls, 78 gtk_list_store_set (ls,
80 &iter, 79 &iter,
81 0, npid, 80 0, npid,
82 1, trust, 81 1, 0 /* number of known addresses */,
83 2, 0 /* number of known addresses */, 82 2, "" /* country name */,
84 3, "" /* country name */, 83 3, NULL /* country flag */,
85 4, NULL /* country flag */,
86 -1); 84 -1);
87} 85}
88 86