aboutsummaryrefslogtreecommitdiff
path: root/src/escrow
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-07-16 18:39:54 +0200
committerjospaeth <spaethj@in.tum.de>2020-07-16 18:39:54 +0200
commit646beac5ca85327b150affa034a5e9d1559382b1 (patch)
tree6c79882f569b14628a73fddce614fced1805d301 /src/escrow
parent557cf25e9dd83441bb3547612e77ce16e6dd0aa0 (diff)
downloadgnunet-646beac5ca85327b150affa034a5e9d1559382b1.tar.gz
gnunet-646beac5ca85327b150affa034a5e9d1559382b1.zip
minor fixes
Diffstat (limited to 'src/escrow')
-rw-r--r--src/escrow/escrow_api.c2
-rw-r--r--src/escrow/gnunet-escrow.c2
-rw-r--r--src/escrow/plugin_escrow_anastasis.c2
-rw-r--r--src/escrow/plugin_escrow_gns.c2
-rw-r--r--src/escrow/plugin_escrow_plaintext.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/escrow/escrow_api.c b/src/escrow/escrow_api.c
index 05491497e..1706d2a5a 100644
--- a/src/escrow/escrow_api.c
+++ b/src/escrow/escrow_api.c
@@ -315,7 +315,7 @@ GNUNET_ESCROW_verify (struct GNUNET_ESCROW_Handle *h,
315 * 315 *
316 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 316 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
317 */ 317 */
318const struct GNUNET_ESCROW_Anchor * 318struct GNUNET_ESCROW_Anchor *
319GNUNET_ESCROW_anchor_string_to_data (struct GNUNET_ESCROW_Handle *h, 319GNUNET_ESCROW_anchor_string_to_data (struct GNUNET_ESCROW_Handle *h,
320 char *anchorString, 320 char *anchorString,
321 enum GNUNET_ESCROW_Key_Escrow_Method method) 321 enum GNUNET_ESCROW_Key_Escrow_Method method)
diff --git a/src/escrow/gnunet-escrow.c b/src/escrow/gnunet-escrow.c
index 30482877c..c1d43b80e 100644
--- a/src/escrow/gnunet-escrow.c
+++ b/src/escrow/gnunet-escrow.c
@@ -215,7 +215,7 @@ start_process ()
215 { 215 {
216 if (NULL != ego) 216 if (NULL != ego)
217 { 217 {
218 fprintf (stderr, "The name %s is already in use for an ego\n", put_ego); 218 fprintf (stderr, "The name %s is already in use for an ego\n", get_ego);
219 cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL); 219 cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
220 return; 220 return;
221 } 221 }
diff --git a/src/escrow/plugin_escrow_anastasis.c b/src/escrow/plugin_escrow_anastasis.c
index 4aca7c520..9543f3cef 100644
--- a/src/escrow/plugin_escrow_anastasis.c
+++ b/src/escrow/plugin_escrow_anastasis.c
@@ -131,7 +131,7 @@ restore_anastasis_key_escrow (struct GNUNET_ESCROW_Handle *h,
131 * @param anchorString the encoded escrow anchor string 131 * @param anchorString the encoded escrow anchor string
132 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 132 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
133 */ 133 */
134const struct GNUNET_ESCROW_Anchor * 134struct GNUNET_ESCROW_Anchor *
135anastasis_anchor_string_to_data (char *anchorString) 135anastasis_anchor_string_to_data (char *anchorString)
136{ 136{
137 struct GNUNET_ESCROW_Anchor *anchor; 137 struct GNUNET_ESCROW_Anchor *anchor;
diff --git a/src/escrow/plugin_escrow_gns.c b/src/escrow/plugin_escrow_gns.c
index 4c42c7665..70f327fb4 100644
--- a/src/escrow/plugin_escrow_gns.c
+++ b/src/escrow/plugin_escrow_gns.c
@@ -161,7 +161,7 @@ restore_gns_key_escrow (struct GNUNET_ESCROW_Handle *h,
161 * @param anchorString the encoded escrow anchor string 161 * @param anchorString the encoded escrow anchor string
162 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 162 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
163 */ 163 */
164const struct GNUNET_ESCROW_Anchor * 164struct GNUNET_ESCROW_Anchor *
165gns_anchor_string_to_data (char *anchorString) 165gns_anchor_string_to_data (char *anchorString)
166{ 166{
167 struct GNUNET_ESCROW_Anchor *anchor; 167 struct GNUNET_ESCROW_Anchor *anchor;
diff --git a/src/escrow/plugin_escrow_plaintext.c b/src/escrow/plugin_escrow_plaintext.c
index f36e33c6b..e1df6bf77 100644
--- a/src/escrow/plugin_escrow_plaintext.c
+++ b/src/escrow/plugin_escrow_plaintext.c
@@ -185,7 +185,7 @@ restore_plaintext_key_escrow (struct GNUNET_ESCROW_Handle *h,
185 * @param anchorString the encoded escrow anchor string 185 * @param anchorString the encoded escrow anchor string
186 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 186 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
187 */ 187 */
188const struct GNUNET_ESCROW_Anchor * 188struct GNUNET_ESCROW_Anchor *
189plaintext_anchor_string_to_data (char *anchorString) 189plaintext_anchor_string_to_data (char *anchorString)
190{ 190{
191 struct GNUNET_ESCROW_Anchor *anchor; 191 struct GNUNET_ESCROW_Anchor *anchor;