aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-07 11:08:40 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-07 11:08:40 +0000
commit93522adc0728de13e94a7b13730781345144e434 (patch)
tree5e8389010559b5c326909bba7d8b18b858eeab35 /src/fs/gnunet-service-fs.c
parenta3247ccf829ff52285721529bbcba00a0da39dcd (diff)
downloadgnunet-93522adc0728de13e94a7b13730781345144e434.tar.gz
gnunet-93522adc0728de13e94a7b13730781345144e434.zip
removing 'publicKey' argument from CORE init callback
Diffstat (limited to 'src/fs/gnunet-service-fs.c')
-rw-r--r--src/fs/gnunet-service-fs.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/fs/gnunet-service-fs.c b/src/fs/gnunet-service-fs.c
index 2e3c7742f..f2770df3e 100644
--- a/src/fs/gnunet-service-fs.c
+++ b/src/fs/gnunet-service-fs.c
@@ -462,13 +462,10 @@ peer_connect_handler (void *cls, const struct GNUNET_PeerIdentity *peer,
462 * @param cls closure 462 * @param cls closure
463 * @param server handle to the server, NULL if we failed 463 * @param server handle to the server, NULL if we failed
464 * @param my_identity ID of this peer, NULL if we failed 464 * @param my_identity ID of this peer, NULL if we failed
465 * @param publicKey public key of this peer, NULL if we failed
466 */ 465 */
467static void 466static void
468peer_init_handler (void *cls, struct GNUNET_CORE_Handle *server, 467peer_init_handler (void *cls, struct GNUNET_CORE_Handle *server,
469 const struct GNUNET_PeerIdentity *my_identity, 468 const struct GNUNET_PeerIdentity *my_identity)
470 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
471 *publicKey)
472{ 469{
473 my_id = *my_identity; 470 my_id = *my_identity;
474} 471}