Browse Source

a missing comma could wreak all sorts of havoc.

svn:r1335
Roger Dingledine 21 years ago
parent
commit
4d747cd954
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/connection.c

+ 1 - 1
src/or/connection.c

@@ -35,7 +35,7 @@ char *conn_state_to_string[][_CONN_TYPE_MAX+1] = {
   { "",                          /* exit, 0 */
   { "",                          /* exit, 0 */
     "waiting for dest info",           /* 1 */
     "waiting for dest info",           /* 1 */
     "connecting",                      /* 2 */
     "connecting",                      /* 2 */
-    "open"                             /* 3 */
+    "open",                            /* 3 */
     "resolve failed" },                /* 4 */
     "resolve failed" },                /* 4 */
   { "ready" }, /* app listener, 0 */
   { "ready" }, /* app listener, 0 */
   { "", /* 0 */
   { "", /* 0 */