Browse Source

r9021@totoro: nickm | 2006-10-13 01:42:45 -0400
Fix for last patch. "", though empty, is true. This ain't Python, Nick.


svn:r8701

Nick Mathewson 19 years ago
parent
commit
45b16c2d9e
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/or/control.c

+ 4 - 2
src/or/control.c

@@ -2875,17 +2875,19 @@ control_event_circuit_status(origin_circuit_t *circ, circuit_status_event_t tp,
     }
 
     if (EVENT_IS_INTERESTING1S(EVENT_CIRCUIT_STATUS)) {
+      const char *sp = strlen(path) ? " " : "";
       send_control1_event_extended(EVENT_CIRCUIT_STATUS, SHORT_NAMES,
                           "650 CIRC %lu %s%s%s@%s\r\n",
                           (unsigned long)circ->global_identifier,
-                          status, path?" ":"", path, reason);
+                          status, sp, path, reason);
     }
     if (EVENT_IS_INTERESTING1L(EVENT_CIRCUIT_STATUS)) {
       char *vpath = circuit_list_path_for_controller(circ);
+      const char *sp = strlen(vpath) ? " " : "";
       send_control1_event_extended(EVENT_CIRCUIT_STATUS, LONG_NAMES,
                           "650 CIRC %lu %s%s%s@%s\r\n",
                           (unsigned long)circ->global_identifier,
-                          status, vpath?" ":"", vpath, reason);
+                          status, sp, vpath, reason);
       tor_free(vpath);
     }
   }