Browse Source

Handle __NonSavedOptions correctly inside LINELIST_V blocks.

Nick Mathewson 7 years ago
parent
commit
9469aaaa82
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/or/confparse.c

+ 5 - 0
src/or/confparse.c

@@ -1148,6 +1148,11 @@ config_dump(const config_format_t *fmt, const void *default_options,
       config_get_assigned_option(fmt, options, fmt->vars[i].name, 1);
 
     for (; line; line = line->next) {
+      if (!strcmpstart(line->key, "__")) {
+        /* This check detects "hidden" variables inside LINELIST_V structures.
+         */
+        continue;
+      }
       smartlist_add_asprintf(elements, "%s%s %s\n",
                    comment_option ? "# " : "",
                    line->key, line->value);