aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-02 22:45:52 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 00:44:29 +0100
commitd4f25caabd6098a2cbb713c9cd8228c1f9a26fe4 (patch)
treefd9e4747415780951809ae3c1ff7330a32853923 /src/reclaim
parente13e66d0dc6a79f6dfe469ba075f307c006fdb66 (diff)
downloadgnunet-d4f25caabd6098a2cbb713c9cd8228c1f9a26fe4.tar.gz
gnunet-d4f25caabd6098a2cbb713c9cd8228c1f9a26fe4.zip
-DOC: Minor fixes to doc comments (mostly correcting typos) to resolve 'unknown command' warnings
Diffstat (limited to 'src/reclaim')
-rw-r--r--src/reclaim/gnunet-service-reclaim.c14
-rw-r--r--src/reclaim/gnunet-service-reclaim_tickets.c2
2 files changed, 8 insertions, 8 deletions
diff --git a/src/reclaim/gnunet-service-reclaim.c b/src/reclaim/gnunet-service-reclaim.c
index 84a98d1e4..9f035f1bd 100644
--- a/src/reclaim/gnunet-service-reclaim.c
+++ b/src/reclaim/gnunet-service-reclaim.c
@@ -723,8 +723,8 @@ issue_ticket_result_cb (void *cls,
723/** 723/**
724 * Check issue ticket message 724 * Check issue ticket message
725 * 725 *
726 * @cls unused 726 * @param cls unused
727 * @im message to check 727 * @param im message to check
728 * @return GNUNET_OK if message is ok 728 * @return GNUNET_OK if message is ok
729 */ 729 */
730static int 730static int
@@ -937,7 +937,7 @@ check_consume_ticket_message (void *cls, const struct ConsumeTicketMessage *cm)
937 * Handle a consume ticket message 937 * Handle a consume ticket message
938 * 938 *
939 * @param cls our client handle 939 * @param cls our client handle
940 * @cm the message to handle 940 * @param cm the message to handle
941 */ 941 */
942static void 942static void
943handle_consume_ticket_message (void *cls, const struct ConsumeTicketMessage *cm) 943handle_consume_ticket_message (void *cls, const struct ConsumeTicketMessage *cm)
@@ -1686,8 +1686,8 @@ attr_delete_cont (void *cls, int32_t success, const char *emsg)
1686/** 1686/**
1687 * Check attribute delete message format 1687 * Check attribute delete message format
1688 * 1688 *
1689 * @cls unused 1689 * @param cls unused
1690 * @dam message to check 1690 * @param dam message to check
1691 */ 1691 */
1692static int 1692static int
1693check_attribute_delete_message (void *cls, 1693check_attribute_delete_message (void *cls,
@@ -1777,8 +1777,8 @@ cred_delete_cont (void *cls, int32_t success, const char *emsg)
1777/** 1777/**
1778 * Check credential delete message format 1778 * Check credential delete message format
1779 * 1779 *
1780 * @cls unused 1780 * @param cls unused
1781 * @dam message to check 1781 * @param dam message to check
1782 */ 1782 */
1783static int 1783static int
1784check_credential_delete_message (void *cls, 1784check_credential_delete_message (void *cls,
diff --git a/src/reclaim/gnunet-service-reclaim_tickets.c b/src/reclaim/gnunet-service-reclaim_tickets.c
index 23b617a7f..c961ba5b2 100644
--- a/src/reclaim/gnunet-service-reclaim_tickets.c
+++ b/src/reclaim/gnunet-service-reclaim_tickets.c
@@ -1671,7 +1671,7 @@ cleanup_iter (struct RECLAIM_TICKETS_Iterator *iter)
1671 1671
1672 1672
1673/** 1673/**
1674 * Return each record of type @GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET 1674 * Return each record of type #GNUNET_GNSRECORD_TYPE_RECLAIM_TICKET
1675 * to the caller and proceed with the iteration. 1675 * to the caller and proceed with the iteration.
1676 * FIXME: Should we _not_ proceed automatically here? 1676 * FIXME: Should we _not_ proceed automatically here?
1677 * 1677 *