aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet_chat_lobby_intern.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnunet_chat_lobby_intern.c')
-rw-r--r--src/gnunet_chat_lobby_intern.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gnunet_chat_lobby_intern.c b/src/gnunet_chat_lobby_intern.c
index 1d031b0..28c1b7a 100644
--- a/src/gnunet_chat_lobby_intern.c
+++ b/src/gnunet_chat_lobby_intern.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2022 GNUnet e.V. 3 Copyright (C) 2022--2023 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -70,7 +70,7 @@ call_cb:
70 70
71void 71void
72cont_lobby_identity_create (void *cls, 72cont_lobby_identity_create (void *cls,
73 const struct GNUNET_IDENTITY_PrivateKey *zone, 73 const struct GNUNET_CRYPTO_PrivateKey *zone,
74 enum GNUNET_ErrorCode ec) 74 enum GNUNET_ErrorCode ec)
75{ 75{
76 struct GNUNET_CHAT_Lobby *lobby = cls; 76 struct GNUNET_CHAT_Lobby *lobby = cls;
@@ -109,8 +109,8 @@ cont_lobby_identity_create (void *cls,
109 if (lobby->uri) 109 if (lobby->uri)
110 uri_destroy(lobby->uri); 110 uri_destroy(lobby->uri);
111 111
112 struct GNUNET_IDENTITY_PublicKey public_zone; 112 struct GNUNET_CRYPTO_PublicKey public_zone;
113 GNUNET_IDENTITY_key_get_public(zone, &public_zone); 113 GNUNET_CRYPTO_key_get_public(zone, &public_zone);
114 114
115 char *label; 115 char *label;
116 util_get_context_label(lobby->context->type, key, &label); 116 util_get_context_label(lobby->context->type, key, &label);