aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fs/fs_namespace.c5
-rw-r--r--src/fs/gnunet-pseudonym.c2
-rw-r--r--src/fs/gnunet-publish.c2
-rw-r--r--src/include/gnunet_crypto_lib.h4
4 files changed, 7 insertions, 6 deletions
diff --git a/src/fs/fs_namespace.c b/src/fs/fs_namespace.c
index 1aca144e1..90de4a915 100644
--- a/src/fs/fs_namespace.c
+++ b/src/fs/fs_namespace.c
@@ -120,6 +120,7 @@ struct GNUNET_FS_UpdateInformationGraph
120 * Return the name of the directory in which we store 120 * Return the name of the directory in which we store
121 * the update information graph for the given local namespace. 121 * the update information graph for the given local namespace.
122 * 122 *
123 * @param h file-sharing handle
123 * @param ns namespace handle 124 * @param ns namespace handle
124 * @return NULL on error, otherwise the name of the directory 125 * @return NULL on error, otherwise the name of the directory
125 */ 126 */
@@ -183,9 +184,9 @@ free_update_information_graph (struct GNUNET_FS_UpdateInformationGraph *uig)
183 184
184 185
185/** 186/**
186 * Write the namespace update node graph to a file. 187 * Write a namespace's update node graph to a file.
187 * 188 *
188 * @param ns namespace to dump 189 * @param uig update information graph to dump
189 */ 190 */
190static void 191static void
191write_update_information_graph (struct GNUNET_FS_UpdateInformationGraph *uig) 192write_update_information_graph (struct GNUNET_FS_UpdateInformationGraph *uig)
diff --git a/src/fs/gnunet-pseudonym.c b/src/fs/gnunet-pseudonym.c
index c87679641..a9c6be623 100644
--- a/src/fs/gnunet-pseudonym.c
+++ b/src/fs/gnunet-pseudonym.c
@@ -180,7 +180,7 @@ post_advertising (void *cls,
180 * 180 *
181 * @param cls closure, NULL 181 * @param cls closure, NULL
182 * @param ego ego handle 182 * @param ego ego handle
183 * @param ego_ctx context for application to store data for this ego 183 * @param ctx context for application to store data for this ego
184 * (during the lifetime of this process, initially NULL) 184 * (during the lifetime of this process, initially NULL)
185 * @param name name assigned by the user for this ego, 185 * @param name name assigned by the user for this ego,
186 * NULL if the user just deleted the ego and it 186 * NULL if the user just deleted the ego and it
diff --git a/src/fs/gnunet-publish.c b/src/fs/gnunet-publish.c
index 39235683c..f621140cd 100644
--- a/src/fs/gnunet-publish.c
+++ b/src/fs/gnunet-publish.c
@@ -689,7 +689,7 @@ identity_continuation (const char *args0)
689 * 689 *
690 * @param cls closure with 'const char *' of filename to publish 690 * @param cls closure with 'const char *' of filename to publish
691 * @param ego ego handle 691 * @param ego ego handle
692 * @param ego_ctx context for application to store data for this ego 692 * @param ctx context for application to store data for this ego
693 * (during the lifetime of this process, initially NULL) 693 * (during the lifetime of this process, initially NULL)
694 * @param name name assigned by the user for this ego, 694 * @param name name assigned by the user for this ego,
695 * NULL if the user just deleted the ego and it 695 * NULL if the user just deleted the ego and it
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 52bb983b0..1704fce07 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -929,13 +929,13 @@ GNUNET_CRYPTO_get_host_identity (const struct GNUNET_CONFIGURATION_Handle *cfg,
929/** 929/**
930 * Derive key material from a public and a private ECC key. 930 * Derive key material from a public and a private ECC key.
931 * 931 *
932 * @param key private key to use for the ECDH (x) 932 * @param priv private key to use for the ECDH (x)
933 * @param pub public key to use for the ECDY (yG) 933 * @param pub public key to use for the ECDY (yG)
934 * @param key_material where to write the key material (xyG) 934 * @param key_material where to write the key material (xyG)
935 * @return GNUNET_SYSERR on error, GNUNET_OK on success 935 * @return GNUNET_SYSERR on error, GNUNET_OK on success
936 */ 936 */
937int 937int
938GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EccPrivateKey *key, 938GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EccPrivateKey *priv,
939 const struct GNUNET_CRYPTO_EccPublicKey *pub, 939 const struct GNUNET_CRYPTO_EccPublicKey *pub,
940 struct GNUNET_HashCode *key_material); 940 struct GNUNET_HashCode *key_material);
941 941