aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core_clients.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/core/gnunet-service-core_clients.c
parenta3247ccf829ff52285721529bbcba00a0da39dcd (diff)
downloadgnunet-93522adc0728de13e94a7b13730781345144e434.tar.gz
gnunet-93522adc0728de13e94a7b13730781345144e434.zip
removing 'publicKey' argument from CORE init callback
Diffstat (limited to 'src/core/gnunet-service-core_clients.c')
-rw-r--r--src/core/gnunet-service-core_clients.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gnunet-service-core_clients.c b/src/core/gnunet-service-core_clients.c
index 7b884f44f..94fecb4ca 100644
--- a/src/core/gnunet-service-core_clients.c
+++ b/src/core/gnunet-service-core_clients.c
@@ -289,7 +289,7 @@ handle_client_init (void *cls, struct GNUNET_SERVER_Client *client,
289 irm.header.size = htons (sizeof (struct InitReplyMessage)); 289 irm.header.size = htons (sizeof (struct InitReplyMessage));
290 irm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY); 290 irm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY);
291 irm.reserved = htonl (0); 291 irm.reserved = htonl (0);
292 irm.publicKey = GSC_my_public_key; 292 irm.my_identity = GSC_my_identity;
293 send_to_client (c, &irm.header, GNUNET_NO); 293 send_to_client (c, &irm.header, GNUNET_NO);
294 if (0 != (c->options & GNUNET_CORE_OPTION_SEND_CONNECT)) 294 if (0 != (c->options & GNUNET_CORE_OPTION_SEND_CONNECT))
295 GSC_SESSIONS_notify_client_about_sessions (c); 295 GSC_SESSIONS_notify_client_about_sessions (c);