]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix typo error in bug warning in relay.c
authorNick Mathewson <nickm@torproject.org>
Thu, 8 Sep 2016 19:15:57 +0000 (15:15 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 8 Sep 2016 19:15:57 +0000 (15:15 -0400)
src/or/relay.c

index 38096ad1bbde100ac90bec9b61dd85085f08eec1..5fedba28a3fe5a4734091c9b0dad4fb0e4aeb930 100644 (file)
@@ -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;
   }