Pārlūkot izejas kodu

Fix comment: ___ options are now that way because of the INVISIBLE flag.

Nick Mathewson 5 gadi atpakaļ
vecāks
revīzija
65511a45ad
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/app/config/config.c

+ 1 - 1
src/app/config/config.c

@@ -8136,7 +8136,7 @@ getinfo_helper_config(control_connection_t *conn,
     int i;
     for (i = 0; option_vars_[i].member.name; ++i) {
       const config_var_t *var = &option_vars_[i];
-      /* don't tell controller about triple-underscore options */
+      /* don't tell controller about invisible options */
       if (option_vars_[i].flags & CVFLAG_INVISIBLE)
         continue;
       const char *type = struct_var_get_typename(&var->member);