aboutsummaryrefslogtreecommitdiff
path: root/src/social/social_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/social/social_api.c')
-rw-r--r--src/social/social_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/social/social_api.c b/src/social/social_api.c
index f78cb9a85..d96c93d8f 100644
--- a/src/social/social_api.c
+++ b/src/social/social_api.c
@@ -1195,7 +1195,7 @@ host_connect (struct GNUNET_SOCIAL_Host *hst)
1195 GNUNET_MQ_handler_end () 1195 GNUNET_MQ_handler_end ()
1196 }; 1196 };
1197 1197
1198 plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social", 1198 plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1199 handlers, host_disconnected, hst); 1199 handlers, host_disconnected, hst);
1200 GNUNET_assert (NULL != plc->mq); 1200 GNUNET_assert (NULL != plc->mq);
1201 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq); 1201 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
@@ -1697,7 +1697,7 @@ guest_connect (struct GNUNET_SOCIAL_Guest *gst)
1697 GNUNET_MQ_handler_end () 1697 GNUNET_MQ_handler_end ()
1698 }; 1698 };
1699 1699
1700 plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social", 1700 plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1701 handlers, guest_disconnected, gst); 1701 handlers, guest_disconnected, gst);
1702 GNUNET_assert (NULL != plc->mq); 1702 GNUNET_assert (NULL != plc->mq);
1703 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq); 1703 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
@@ -2597,7 +2597,7 @@ app_connect (struct GNUNET_SOCIAL_App *app)
2597 GNUNET_MQ_handler_end () 2597 GNUNET_MQ_handler_end ()
2598 }; 2598 };
2599 2599
2600 app->mq = GNUNET_CLIENT_connecT (app->cfg, "social", 2600 app->mq = GNUNET_CLIENT_connect (app->cfg, "social",
2601 handlers, app_disconnected, app); 2601 handlers, app_disconnected, app);
2602 GNUNET_assert (NULL != app->mq); 2602 GNUNET_assert (NULL != app->mq);
2603 GNUNET_MQ_send_copy (app->mq, app->connect_env); 2603 GNUNET_MQ_send_copy (app->mq, app->connect_env);