aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/gnunet-escrow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/escrow/gnunet-escrow.c')
-rw-r--r--src/escrow/gnunet-escrow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/escrow/gnunet-escrow.c b/src/escrow/gnunet-escrow.c
index e66c43046..36728f949 100644
--- a/src/escrow/gnunet-escrow.c
+++ b/src/escrow/gnunet-escrow.c
@@ -194,14 +194,14 @@ do_cleanup (void *cls)
194 194
195static void 195static void
196put_cb (void *cls, 196put_cb (void *cls,
197 struct GNUNET_ESCROW_Anchor *escrowAnchor, 197 struct GNUNET_ESCROW_Anchor *anchor,
198 const char *emsg) 198 const char *emsg)
199{ 199{
200 char *anchorString; 200 char *anchorString;
201 201
202 escrow_op = NULL; 202 escrow_op = NULL;
203 203
204 if (NULL == escrowAnchor) 204 if (NULL == anchor)
205 { 205 {
206 ret = 1; 206 ret = 1;
207 if (NULL != emsg) 207 if (NULL != emsg)
@@ -209,7 +209,7 @@ put_cb (void *cls,
209 } 209 }
210 else 210 else
211 { 211 {
212 anchorString = GNUNET_ESCROW_anchor_data_to_string (escrowAnchor); 212 anchorString = GNUNET_ESCROW_anchor_data_to_string (anchor);
213 213
214 fprintf (stdout, "Escrow finished! Please keep the following anchor " 214 fprintf (stdout, "Escrow finished! Please keep the following anchor "
215 "in order to restore the key later!\n%s\n", anchorString); 215 "in order to restore the key later!\n%s\n", anchorString);