summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-03-26 09:53:12 -0400
committerNick Mathewson <nickm@torproject.org>2016-03-26 09:53:12 -0400
commitdd572dac34c0ba9e3c360d462d77a09e4f584511 (patch)
tree11bf5432fc8bd4e5ce6cd7f2aeb6d67352e416b9
parentc81b1358e706da65b5a513bc8fd851c62e0645b0 (diff)
downloadtor-dd572dac34c0ba9e3c360d462d77a09e4f584511.tar.gz
tor-dd572dac34c0ba9e3c360d462d77a09e4f584511.zip
Fix all doxygen warnings (other than missing docs)
-rw-r--r--src/common/crypto_ed25519.c2
-rw-r--r--src/or/dircollate.c8
-rw-r--r--src/or/main.c2
-rw-r--r--src/or/microdesc.c3
-rw-r--r--src/or/torcert.c2
5 files changed, 9 insertions, 8 deletions
diff --git a/src/common/crypto_ed25519.c b/src/common/crypto_ed25519.c
index 1d0cfd01ce..ea2d8e3892 100644
--- a/src/common/crypto_ed25519.c
+++ b/src/common/crypto_ed25519.c
@@ -414,7 +414,7 @@ ed25519_seckey_write_to_file(const ed25519_secret_key_t *seckey,
/**
* Read seckey unencrypted from <b>filename</b>, storing it into
- * <b>seckey_out</b>. Set *<b>tag_out</> to the tag it was marked with.
+ * <b>seckey_out</b>. Set *<b>tag_out</b> to the tag it was marked with.
* Return 0 on success, -1 on failure.
*/
int
diff --git a/src/or/dircollate.c b/src/or/dircollate.c
index 3648664d44..ed52f0abb0 100644
--- a/src/or/dircollate.c
+++ b/src/or/dircollate.c
@@ -225,12 +225,12 @@ dircollator_collate_by_rsa(dircollator_t *dc)
* entry in <b>dc</b> by ed25519 key and by RSA key.
*
* The rule is, approximately:
- * If a <ed,rsa> identity is listed by more than half of authorities,
- * include it. And include all <rsa>-only votes about that node as
+ * If a (ed,rsa) identity is listed by more than half of authorities,
+ * include it. And include all (rsa)-only votes about that node as
* matching.
*
- * Otherwise, if an <*,rsa> or <rsa> identity is listed by more than
- * half of the authorities, and no <ed,rsa> pair for the same RSA key
+ * Otherwise, if an (*,rsa) or (rsa) identity is listed by more than
+ * half of the authorities, and no (ed,rsa) pair for the same RSA key
* has been already been included based on the rule above, include
* that RSA identity.
*/
diff --git a/src/or/main.c b/src/or/main.c
index 0bd35272f5..26e52d241d 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -544,7 +544,7 @@ connection_is_reading(connection_t *conn)
}
/** Check whether <b>conn</b> is correct in having (or not having) a
- * read/write event (passed in <b>ev</b). On success, return 0. On failure,
+ * read/write event (passed in <b>ev</b>). On success, return 0. On failure,
* log a warning and return -1. */
static int
connection_check_event(connection_t *conn, struct event *ev)
diff --git a/src/or/microdesc.c b/src/or/microdesc.c
index 9c9e09140c..299042995b 100644
--- a/src/or/microdesc.c
+++ b/src/or/microdesc.c
@@ -60,7 +60,8 @@ microdesc_hash_(microdesc_t *md)
return (unsigned) siphash24g(md->digest, sizeof(md->digest));
}
-/** Helper: compares <b>a</b> and </b> for equality for hash-table purposes. */
+/** Helper: compares <b>a</b> and <b>b</b> for equality for hash-table
+ * purposes. */
static inline int
microdesc_eq_(microdesc_t *a, microdesc_t *b)
{
diff --git a/src/or/torcert.c b/src/or/torcert.c
index de7d28d740..a6a33c675a 100644
--- a/src/or/torcert.c
+++ b/src/or/torcert.c
@@ -107,7 +107,7 @@ tor_cert_create(const ed25519_keypair_t *signing_key,
now, lifetime, flags);
}
-/** Release all storage held for <b>cert</>. */
+/** Release all storage held for <b>cert</b>. */
void
tor_cert_free(tor_cert_t *cert)
{