aboutsummaryrefslogtreecommitdiff
path: root/src/chat
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/chat
parenta3247ccf829ff52285721529bbcba00a0da39dcd (diff)
downloadgnunet-93522adc0728de13e94a7b13730781345144e434.tar.gz
gnunet-93522adc0728de13e94a7b13730781345144e434.zip
removing 'publicKey' argument from CORE init callback
Diffstat (limited to 'src/chat')
-rw-r--r--src/chat/gnunet-service-chat.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/chat/gnunet-service-chat.c b/src/chat/gnunet-service-chat.c
index ed8dfb9e9..2d6f192ec 100644
--- a/src/chat/gnunet-service-chat.c
+++ b/src/chat/gnunet-service-chat.c
@@ -1641,12 +1641,10 @@ cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1641 * @param cls closure, NULL 1641 * @param cls closure, NULL
1642 * @param server handle to the server for this service 1642 * @param server handle to the server for this service
1643 * @param my_identity the public identity of this peer 1643 * @param my_identity the public identity of this peer
1644 * @param publicKey the public key of this peer
1645 */ 1644 */
1646static void 1645static void
1647core_init (void *cls, struct GNUNET_CORE_Handle *server, 1646core_init (void *cls, struct GNUNET_CORE_Handle *server,
1648 const struct GNUNET_PeerIdentity *my_identity, 1647 const struct GNUNET_PeerIdentity *my_identity)
1649 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
1650{ 1648{
1651 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Core initialized\n"); 1649 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Core initialized\n");
1652 me = my_identity; 1650 me = my_identity;