aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-09-21 10:17:12 +0000
committerNathan S. Evans <evans@in.tum.de>2010-09-21 10:17:12 +0000
commit8a0030fc6379301d75dea89fb5543608db16854c (patch)
treefac072849c7dc7e61e6770d50dcd5e461e79ed32 /src
parent8e2f9b241d28b1609a02b877965469b5428fcc76 (diff)
downloadgnunet-8a0030fc6379301d75dea89fb5543608db16854c.tar.gz
gnunet-8a0030fc6379301d75dea89fb5543608db16854c.zip
missing return
Diffstat (limited to 'src')
-rw-r--r--src/dht/gnunet-service-dht.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dht/gnunet-service-dht.c b/src/dht/gnunet-service-dht.c
index c606f16ba..2ee40f2da 100644
--- a/src/dht/gnunet-service-dht.c
+++ b/src/dht/gnunet-service-dht.c
@@ -2282,6 +2282,7 @@ handle_dht_find_peer (void *cls,
2282 increment_stats(STAT_HELLOS_PROVIDED); 2282 increment_stats(STAT_HELLOS_PROVIDED);
2283 GNUNET_TRANSPORT_offer_hello(transport_handle, other_hello); 2283 GNUNET_TRANSPORT_offer_hello(transport_handle, other_hello);
2284 GNUNET_CORE_peer_request_connect(sched, cfg, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5), &peer_id, NULL, NULL); 2284 GNUNET_CORE_peer_request_connect(sched, cfg, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5), &peer_id, NULL, NULL);
2285 return;
2285 } 2286 }
2286 else /* We don't want this peer! */ /* Alternatively, just continue normally */ 2287 else /* We don't want this peer! */ /* Alternatively, just continue normally */
2287 return; 2288 return;