summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-10-04 06:53:59 +0000
committerRoger Dingledine <arma@torproject.org>2005-10-04 06:53:59 +0000
commit88c37f2d24b66d467dd676d1ab4439217d8598a6 (patch)
tree1dd88509e2a002744102fdc74f35e50368c1546e
parentf8c07e1f33faf15d4caeadb9abf8bbdedea74b5e (diff)
downloadtor-88c37f2d24b66d467dd676d1ab4439217d8598a6.tar.gz
tor-88c37f2d24b66d467dd676d1ab4439217d8598a6.zip
comment cleanups
svn:r5181
-rw-r--r--src/or/circuitbuild.c4
-rw-r--r--src/or/control.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 57a2d86f84..fd84306b72 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1663,7 +1663,7 @@ pick_helper_nodes(void)
helper_nodes_changed();
}
-/** Remove all elements from the list of helper nodes */
+/** Remove all elements from the list of helper nodes. */
static void
clear_helper_nodes(void)
{
@@ -1672,7 +1672,7 @@ clear_helper_nodes(void)
helper_nodes_changed();
}
-/** Release all storage held by the list of helper nodes */
+/** Release all storage held by the list of helper nodes. */
void
helper_nodes_free_all(void)
{
diff --git a/src/or/control.c b/src/or/control.c
index f3e9711050..dccb2d55a5 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -381,7 +381,7 @@ read_escaped_data(const char *data, size_t len, int translate_newlines,
* string (unquoted, unescaped) into a newly allocated string in *<b>out</b>;
* store its length in <b>out_len</b>. On success, return a pointer to the
* character immediately following the escaped string. On failure, return
- * NULL. **/
+ * NULL. */
static const char *
get_escaped_string(const char *start, size_t in_len_max,
char **out, size_t *out_len)