diff options
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 1d79e62cf7..2aec912c17 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1057,7 +1057,7 @@ consider_recording_trackhost(connection_t *conn, circuit_t *circ) SMARTLIST_FOREACH(options->TrackHostExits, const char *, cp, { if (cp[0] == '.') { /* match end */ - /* XXX strstr is probably really bad here */ + /* XXX strstr is probably really bad here. */ if ((str = strstr(conn->socks_request->address, &cp[1]))) { if (str == conn->socks_request->address || strcmp(str, &cp[1]) == 0) { |