aboutsummaryrefslogtreecommitdiff
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
parent557cf25e9dd83441bb3547612e77ce16e6dd0aa0 (diff)
downloadgnunet-646beac5ca85327b150affa034a5e9d1559382b1.tar.gz
gnunet-646beac5ca85327b150affa034a5e9d1559382b1.zip
minor fixes
-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
-rw-r--r--src/include/gnunet_escrow_lib.h2
-rw-r--r--src/include/gnunet_escrow_plugin.h2
7 files changed, 7 insertions, 7 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;
diff --git a/src/include/gnunet_escrow_lib.h b/src/include/gnunet_escrow_lib.h
index 01abae846..9f879ecfc 100644
--- a/src/include/gnunet_escrow_lib.h
+++ b/src/include/gnunet_escrow_lib.h
@@ -277,7 +277,7 @@ GNUNET_ESCROW_verify (
277 * 277 *
278 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 278 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
279 */ 279 */
280const struct GNUNET_ESCROW_Anchor * 280struct GNUNET_ESCROW_Anchor *
281GNUNET_ESCROW_anchor_string_to_data ( 281GNUNET_ESCROW_anchor_string_to_data (
282 struct GNUNET_ESCROW_Handle *h, 282 struct GNUNET_ESCROW_Handle *h,
283 char *anchorString, 283 char *anchorString,
diff --git a/src/include/gnunet_escrow_plugin.h b/src/include/gnunet_escrow_plugin.h
index 46bef25e2..07847cea3 100644
--- a/src/include/gnunet_escrow_plugin.h
+++ b/src/include/gnunet_escrow_plugin.h
@@ -182,7 +182,7 @@ typedef void (*GNUNET_ESCROW_RestoreKeyFunction) (
182 * @param anchorString the encoded escrow anchor string 182 * @param anchorString the encoded escrow anchor string
183 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct 183 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct
184 */ 184 */
185typedef const struct GNUNET_ESCROW_Anchor *(*GNUNET_ESCROW_AnchorStringToDataFunction) ( 185typedef struct GNUNET_ESCROW_Anchor *(*GNUNET_ESCROW_AnchorStringToDataFunction) (
186 char *anchorString); 186 char *anchorString);
187 187
188 188