Sebastian Hahn před 16 roky
rodič
revize
989e74e5c0
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/or/config.c

+ 2 - 1
src/or/config.c

@@ -4799,7 +4799,8 @@ config_parse_units(const char *val, struct unit_table_t *u, int *ok)
 
   tor_assert(ok);
   sl = smartlist_create();
-  smartlist_split_string(sl, val, NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3);
+  smartlist_split_string(sl, val, NULL,
+                         SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3);
 
   if (smartlist_len(sl) < 1 || smartlist_len(sl) > 2) {
     *ok = 0;