Browse Source

Increment an informational counter for use failed state.

This informational counter is probably now redundant, but might as well keep
it consistent I guess.
Mike Perry 11 years ago
parent
commit
b3e57b760e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/or/circuitbuild.c

+ 4 - 0
src/or/circuitbuild.c

@@ -2002,6 +2002,10 @@ pathbias_check_close(origin_circuit_t *ocirc, int reason)
       pathbias_count_use_success(ocirc);
       break;
 
+    case PATH_STATE_USE_FAILED:
+      pathbias_count_use_failed(ocirc);
+      break;
+
     default:
       // Other states are uninteresting. No stats to count.
       break;