diff options
author | Roger Dingledine <arma@torproject.org> | 2007-05-31 23:57:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-05-31 23:57:46 +0000 |
commit | b1ee20f0e899111a8cb4fb64e2f304fa1ce6a199 (patch) | |
tree | b6e2291fb801962424e691ab26a23d950dd4f6fb /src | |
parent | 3562d2cb66c18e79630a4dd124335d3429ef55c5 (diff) | |
download | tor-b1ee20f0e899111a8cb4fb64e2f304fa1ce6a199.tar.gz tor-b1ee20f0e899111a8cb4fb64e2f304fa1ce6a199.zip |
trivial changes from my sandbox
svn:r10429
Diffstat (limited to 'src')
-rw-r--r-- | src/common/compat.c | 2 | ||||
-rw-r--r-- | src/common/util.c | 2 | ||||
-rw-r--r-- | src/or/circuituse.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index f78c649386..49ea1d6b66 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -767,7 +767,7 @@ switch_id(const char *user, const char *group) #ifdef HAVE_PWD_H /** Allocate and return a string containing the home directory for the - * user <b>username</b>. Only works on posix-like systems */ + * user <b>username</b>. Only works on posix-like systems. */ char * get_user_homedir(const char *username) { diff --git a/src/common/util.c b/src/common/util.c index 889ede1006..14013edb10 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1585,7 +1585,7 @@ parse_line_from_str(char *line, char **key_out, char **value_out) return line; } -/** Expand any homedir prefix on 'filename'; return a newly allocated +/** Expand any homedir prefix on <b>filename</b>; return a newly allocated * string. */ char * expand_filename(const char *filename) diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 684a057def..d1044b491e 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -538,7 +538,7 @@ circuit_detach_stream(circuit_t *circ, edge_connection_t *conn) log_warn(LD_BUG,"Edge connection not in circuit's list."); /* Don't give an error here; it's harmless. */ - // tor_fragile_assert(); + tor_fragile_assert(); } /** Find each circuit that has been unused for too long, or dirty |