Browse Source

MonthlyAccountingStart is dead.

svn:r4920
Roger Dingledine 20 years ago
parent
commit
2f6664ce80
1 changed files with 0 additions and 18 deletions
  1. 0 18
      src/or/config.c

+ 0 - 18
src/or/config.c

@@ -1845,24 +1845,6 @@ options_validate(or_options_t *options)
     result = -1;
     result = -1;
   }
   }
 
 
-#if 0
-  if (options->_MonthlyAccountingStart) {
-    if (options->AccountingStart) {
-      log(LOG_WARN,"Can't specify AccountingStart and MonthlyAccountingStart");
-      result = -1;
-    } else {
-      options->AccountingStart = tor_malloc(32);
-      if (tor_snprintf(options->AccountingStart, 32, "month %d 0:00",
-                       options->_MonthlyAccountingStart)<0) {
-        log_fn(LOG_WARN,"Error translating MonthlyAccountingStart");
-        result = -1;
-      } else {
-        log_fn(LOG_WARN,"MonthlyAccountingStart is deprecated.  Use 'AccountingStart %s' instead.", options->AccountingStart);
-      }
-    }
-  }
-#endif
-
   if (accounting_parse_options(options, 1)<0) {
   if (accounting_parse_options(options, 1)<0) {
     result = -1;
     result = -1;
   }
   }