diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-08 15:15:57 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-08 15:15:57 -0400 |
commit | 3fcd5d71ad3b8b05b60ef5b3a7a62c3d53625d55 (patch) | |
tree | 14fb0be8c2c631cd9c9055224b37ba7fb15dae82 /src/or/relay.c | |
parent | e9fdec2b1d5cc4055516d08a53663002b3722529 (diff) | |
download | tor-3fcd5d71ad3b8b05b60ef5b3a7a62c3d53625d55.tar.gz tor-3fcd5d71ad3b8b05b60ef5b3a7a62c3d53625d55.zip |
Fix typo error in bug warning in relay.c
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 38096ad1bb..5fedba28a3 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -2454,7 +2454,7 @@ update_circuit_on_cmux_(circuit_t *circ, cell_direction_t direction, /* Cmux sanity check */ if (! circuitmux_is_circuit_attached(cmux, circ)) { - log_warn(LD_BUG, "called on non-attachd circuit from %s:%d", + log_warn(LD_BUG, "called on non-attached circuit from %s:%d", file, lineno); return; } |