aboutsummaryrefslogtreecommitdiff
path: root/src/topology
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-12-23 14:33:46 +0000
committerChristian Grothoff <christian@grothoff.org>2010-12-23 14:33:46 +0000
commit5c95af3375a6924e5714263ff8ef746602391e26 (patch)
tree3becf121be059fcdf372449c5a77096e4a14d885 /src/topology
parent8ebac00ebaf0656548c5a66d2519bfccdbb3e7db (diff)
downloadgnunet-5c95af3375a6924e5714263ff8ef746602391e26.tar.gz
gnunet-5c95af3375a6924e5714263ff8ef746602391e26.zip
cleaning up core API with bugfix
Diffstat (limited to 'src/topology')
-rw-r--r--src/topology/gnunet-daemon-topology.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/topology/gnunet-daemon-topology.c b/src/topology/gnunet-daemon-topology.c
index 880dff062..7a3743866 100644
--- a/src/topology/gnunet-daemon-topology.c
+++ b/src/topology/gnunet-daemon-topology.c
@@ -271,11 +271,11 @@ whitelist_peers ()
271 * Function called by core when our attempt to connect succeeded. 271 * Function called by core when our attempt to connect succeeded.
272 * 272 *
273 * @param cls the 'struct Peer' for which we issued the connect request 273 * @param cls the 'struct Peer' for which we issued the connect request
274 * @param tc scheduler context 274 * @param success was the request transmitted
275 */ 275 */
276static void 276static void
277connect_completed_callback (void *cls, 277connect_completed_callback (void *cls,
278 const struct GNUNET_SCHEDULER_TaskContext *tc) 278 int success)
279{ 279{
280 struct Peer *pos = cls; 280 struct Peer *pos = cls;
281 281