]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Doxygen: fix warnings about mismatched HTML tags.
authorNick Mathewson <nickm@torproject.org>
Wed, 16 Oct 2019 12:25:10 +0000 (08:25 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 16 Oct 2019 12:27:03 +0000 (08:27 -0400)
src/core/mainloop/periodic.c
src/feature/client/entrynodes.c
src/feature/dircache/consdiffmgr.c
src/feature/dircommon/consdiff.c
src/feature/dirparse/microdesc_parse.c
src/feature/keymgt/loadkey.c
src/lib/crypt_ops/crypto_dh_openssl.c
src/lib/encoding/pem.c
src/lib/evloop/compat_libevent.c
src/lib/net/address.c

index dbc4553a733dfd5410ad342e804b688c53be7c22..51a0165d19933cb226d1a3c4b001d74623302e49 100644 (file)
@@ -39,7 +39,7 @@ static const int MAX_INTERVAL = 10 * 365 * 86400;
 
 /**
  * Global list of periodic events that have been registered with
- * <b>periodic_event_register</a>.
+ * <b>periodic_event_register</b>.
  **/
 static smartlist_t *the_periodic_events = NULL;
 
index 36b575ef200e93e75f6b6b62a2941f10b9cb915c..4e61899ecd33d1e889a10ecb5b314e36523f01d7 100644 (file)
@@ -1038,7 +1038,7 @@ get_max_sample_size(guard_selection_t *gs,
  * Return a smartlist of the all the guards that are not currently
  * members of the sample (GUARDS - SAMPLED_GUARDS).  The elements of
  * this list are node_t pointers in the non-bridge case, and
- * bridge_info_t pointers in the bridge case.  Set *<b>n_guards_out/b>
+ * bridge_info_t pointers in the bridge case.  Set *<b>n_guards_out</b>
  * to the number of guards that we found in GUARDS, including those
  * that were already sampled.
  */
index bc02a33e3006bd63b9bb719c30572699b591e984..058ff1f500412ac1242d8251df29b8205c321168 100644 (file)
@@ -1293,7 +1293,7 @@ typedef struct compressed_result_t {
 
 /**
  * Compress the bytestring <b>input</b> of length <b>len</b> using the
- * <n>n_methods</b> compression methods listed in the array <b>methods</b>.
+ * <b>n_methods</b> compression methods listed in the array <b>methods</b>.
  *
  * For each successful compression, set the fields in the <b>results_out</b>
  * array in the position corresponding to the compression method. Use
index 8e93953f73d3baedb2b93690014493475e911387..2c4d3a19c08bae2ec27be7427fc8396fbe5afd7b 100644 (file)
@@ -570,7 +570,7 @@ find_next_router_line(const smartlist_t *cons,
 /** Pre-process a consensus in <b>cons</b> (represented as a list of cdline_t)
  * to remove the signatures from it.  If the footer is removed, return a
  * cdline_t containing a delete command to delete the footer, allocated in
- * <b>area</>.  If no footer is removed, return NULL.
+ * <b>area</b>.  If no footer is removed, return NULL.
  *
  * We remove the signatures here because they are not themselves signed, and
  * as such there might be different encodings for them.
index 4bb4db78210119d35eac80a2826caa48c26fe542..e526a355c16ea3723f7e572bd91eb4f4d6c25f60 100644 (file)
@@ -164,7 +164,7 @@ microdesc_extract_body(microdesc_t *md,
 
 /**
  * Parse a microdescriptor which begins at <b>s</b> and ends at
- * <b>start_of_next_microdesc.  Store its fields into <b>md</b>.  Use
+ * <b>start_of_next_microdesc</b>.  Store its fields into <b>md</b>.  Use
  * <b>where</b> for generating log information.  If <b>allow_annotations</b>
  * is true, then one or more annotations may precede the microdescriptor body
  * proper.  Use <b>area</b> for memory management, clearing it when done.
index a8cbf0e582b206513e52899e6ebff061ce9ef471..5c1e6353b838bd2678cea69fe57920bbd1c68c4b 100644 (file)
@@ -33,7 +33,7 @@
 /** Try to read an RSA key from <b>fname</b>.  If <b>fname</b> doesn't exist
  * and <b>generate</b> is true, create a new RSA key and save it in
  * <b>fname</b>.  Return the read/created key, or NULL on error.  Log all
- * errors at level <b>severity</b>. If <b>created_out/b> is non-NULL and a
+ * errors at level <b>severity</b>. If <b>created_out</b> is non-NULL and a
  * new key was created, set *<b>created_out</b> to true.
  */
 crypto_pk_t *
index 8ae97373e8eed4840124d43c33baaf74d3a8a457..e7f22d749b6d38bf64cbac2f69162f4339e54183 100644 (file)
@@ -103,7 +103,7 @@ crypto_validate_dh_params(const BIGNUM *p, const BIGNUM *g)
 #endif /* 0 */
 
 /**
- * Helper: convert <b>hex<b> to a bignum, and return it.  Assert that the
+ * Helper: convert <b>hex</b> to a bignum, and return it.  Assert that the
  * operation was successful.
  */
 static BIGNUM *
index 24b238b1301764b32a130bbc643ed7d80b690645..95f93ebeff914350634110afee1c8eb8b8073d35 100644 (file)
@@ -42,7 +42,7 @@ pem_encoded_size(size_t src_len, const char *objtype)
 
 /**
  * PEM-encode the <b>srclen</b>-byte object at <b>src</b> into the
- * <b>destlen<\b>-byte buffer at <b>dest</b>, tagging it with <b>objtype</b>.
+ * <b>destlen</b>-byte buffer at <b>dest</b>, tagging it with <b>objtype</b>.
  * Return 0 on success and -1 on failure.
  */
 int
index 91eacb9938807e1813c4427c3228bf6d08b0c4ce..500c74831cb83efc77a64933fab13c847f4f6b25 100644 (file)
@@ -422,7 +422,7 @@ mainloop_event_activate(mainloop_event_t *event)
  *
  * If the event is scheduled for a different time, cancel it and run
  * after this delay instead.  If the event is currently pending to run
- * <em>now</b>, has no effect.
+ * <b>now</b>, has no effect.
  *
  * Do not call this function with <b>tv</b> == NULL -- use
  * mainloop_event_activate() instead.
index 0a2c84caf293b0f8b2323c275cdcda0e5b9f68c6..dbff3bbb0dd4953ed9ac2d2876abdba370393c3a 100644 (file)
@@ -2001,7 +2001,7 @@ tor_addr_port_new(const tor_addr_t *addr, uint16_t port)
   return ap;
 }
 
-/** Return true iff <a>a</b> and <b>b</b> are the same address and port */
+/** Return true iff <b>a</b> and <b>b</b> are the same address and port */
 int
 tor_addr_port_eq(const tor_addr_port_t *a,
                  const tor_addr_port_t *b)