aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/plugin_escrow_plaintext.c
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-07-15 17:49:00 +0200
committerjospaeth <spaethj@in.tum.de>2020-07-15 17:49:00 +0200
commit2f20415d075a69198ede195e800b3cfc56a94f90 (patch)
treed01eabde05a8114cbb7d2df7922cb9529fe241e0 /src/escrow/plugin_escrow_plaintext.c
parent3192c1c84a8cf6aa81e55ac647adf125cbd88904 (diff)
downloadgnunet-2f20415d075a69198ede195e800b3cfc56a94f90.tar.gz
gnunet-2f20415d075a69198ede195e800b3cfc56a94f90.zip
fix static, fix method names
Diffstat (limited to 'src/escrow/plugin_escrow_plaintext.c')
-rw-r--r--src/escrow/plugin_escrow_plaintext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/escrow/plugin_escrow_plaintext.c b/src/escrow/plugin_escrow_plaintext.c
index 2213b334c..3d15167b9 100644
--- a/src/escrow/plugin_escrow_plaintext.c
+++ b/src/escrow/plugin_escrow_plaintext.c
@@ -193,7 +193,7 @@ libgnunet_plugin_escrow_plaintext_init (void *cls)
193 ph.cont = &plaintext_cont_init; 193 ph.cont = &plaintext_cont_init;
194 194
195 identity_handle = GNUNET_IDENTITY_connect (cfg, 195 identity_handle = GNUNET_IDENTITY_connect (cfg,
196 &GNUNET_ESCROW_list_ego, 196 &ESCROW_list_ego,
197 &ph); 197 &ph);
198 198
199 return api; 199 return api;
@@ -213,7 +213,7 @@ libgnunet_plugin_escrow_plaintext_done (void *cls)
213 213
214 GNUNET_free (api); 214 GNUNET_free (api);
215 GNUNET_IDENTITY_disconnect (identity_handle); 215 GNUNET_IDENTITY_disconnect (identity_handle);
216 GNUNET_ESCROW_cleanup_ego_list (&ph); 216 ESCROW_cleanup_ego_list (&ph);
217 217
218 return NULL; 218 return NULL;
219} 219}