aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-core-list-connections.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gnunet-core-list-connections.c')
-rw-r--r--src/core/gnunet-core-list-connections.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/gnunet-core-list-connections.c b/src/core/gnunet-core-list-connections.c
index c93f50981..fcd076564 100644
--- a/src/core/gnunet-core-list-connections.c
+++ b/src/core/gnunet-core-list-connections.c
@@ -115,7 +115,7 @@ process_resolved_address (void *cls, const struct GNUNET_PeerIdentity *peer,
115 /* 115 /*
116 * new_address = GNUNET_malloc (sizeof (struct AddressStringList)); 116 * new_address = GNUNET_malloc (sizeof (struct AddressStringList));
117 * #if VERBOSE 117 * #if VERBOSE
118 * fprintf (stderr, "Received address %s\n", address); 118 * FPRINTF (stderr, "Received address %s\n", address);
119 * #endif 119 * #endif
120 * 120 *
121 * new_address->address_string = GNUNET_strdup ("FIXME"); 121 * new_address->address_string = GNUNET_strdup ("FIXME");
@@ -138,7 +138,7 @@ connected_peer_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
138 if (peer != NULL) /* Not yet finished */ 138 if (peer != NULL) /* Not yet finished */
139 { 139 {
140#if VERBOSE 140#if VERBOSE
141 fprintf (stderr, "Learned about peer %s\n", GNUNET_i2s (peer)); 141 FPRINTF (stderr, "Learned about peer %s\n", GNUNET_i2s (peer));
142 peer_count++; 142 peer_count++;
143#endif 143#endif
144 pc = GNUNET_malloc (sizeof (struct PrintContext)); 144 pc = GNUNET_malloc (sizeof (struct PrintContext));
@@ -150,7 +150,7 @@ connected_peer_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
150#if VERBOSE 150#if VERBOSE
151 else 151 else
152 { 152 {
153 fprintf (stderr, "Counted %u total connected peers.\n", peer_count); 153 FPRINTF (stderr, "Counted %u total connected peers.\n", peer_count);
154 } 154 }
155#endif 155#endif
156} 156}
@@ -172,7 +172,7 @@ run (void *cls, char *const *args, const char *cfgfile,
172 cfg = c; 172 cfg = c;
173 if (args[0] != NULL) 173 if (args[0] != NULL)
174 { 174 {
175 fprintf (stderr, _("Invalid command line argument `%s'\n"), args[0]); 175 FPRINTF (stderr, _("Invalid command line argument `%s'\n"), args[0]);
176 return; 176 return;
177 } 177 }
178 178