ソースを参照

minor cleanup

in options_act() we set running_tor to options->command == CMD_RUN_TOR
once and used that in all but one place.  Now we use running_tor in that
place also.


svn:r13819
Peter Palfrader 16 年 前
コミット
9e7b4400dc
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -1146,7 +1146,7 @@ options_act(or_options_t *old_options)
   }
 
   /* Load state */
-  if (! global_state && options->command == CMD_RUN_TOR) {
+  if (! global_state && running_tor) {
     if (or_state_load())
       return -1;
     rep_hist_load_mtbf_data(time(NULL));