aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh.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/mesh/gnunet-service-mesh.c
parenta3247ccf829ff52285721529bbcba00a0da39dcd (diff)
downloadgnunet-93522adc0728de13e94a7b13730781345144e434.tar.gz
gnunet-93522adc0728de13e94a7b13730781345144e434.zip
removing 'publicKey' argument from CORE init callback
Diffstat (limited to 'src/mesh/gnunet-service-mesh.c')
-rw-r--r--src/mesh/gnunet-service-mesh.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index c9ac99708..a35ef9a66 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -3141,12 +3141,10 @@ static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
3141 * @param cls service closure 3141 * @param cls service closure
3142 * @param server handle to the server for this service 3142 * @param server handle to the server for this service
3143 * @param identity the public identity of this peer 3143 * @param identity the public identity of this peer
3144 * @param publicKey the public key of this peer
3145 */ 3144 */
3146static void 3145static void
3147core_init (void *cls, struct GNUNET_CORE_Handle *server, 3146core_init (void *cls, struct GNUNET_CORE_Handle *server,
3148 const struct GNUNET_PeerIdentity *identity, 3147 const struct GNUNET_PeerIdentity *identity)
3149 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
3150{ 3148{
3151 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n"); 3149 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n");
3152 core_handle = server; 3150 core_handle = server;