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
This commit is contained in:
Peter Palfrader
2008-03-03 12:48:13 +00:00
parent 5bf0a01011
commit 9e7b4400dc
+1 -1
View File
@@ -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));