diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-04-11 12:59:57 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-16 16:57:32 -0500 |
commit | ca18768fb2d178052fbf1207075406673f422c8a (patch) | |
tree | 6ea9ea35dd6980c2ec5aecf5aa483d3fa0c6e4af /src/or/connection_edge.c | |
parent | 49e619c1cf7ed62334263a89eb031899bc2e7178 (diff) | |
download | tor-ca18768fb2d178052fbf1207075406673f422c8a.tar.gz tor-ca18768fb2d178052fbf1207075406673f422c8a.zip |
Aftermath of isin->contains renaming
Fix wide lines and comments, and add a changes file
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index acab81565d..a68a5cf42b 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -829,7 +829,8 @@ static int consider_plaintext_ports(entry_connection_t *conn, uint16_t port) { const or_options_t *options = get_options(); - int reject = smartlist_contains_int_as_string(options->RejectPlaintextPorts, port); + int reject = smartlist_contains_int_as_string( + options->RejectPlaintextPorts, port); if (smartlist_contains_int_as_string(options->WarnPlaintextPorts, port)) { log_warn(LD_APP, "Application request to port %d: this port is " |