From: Nick Mathewson Date: Mon, 10 Sep 2012 14:22:40 +0000 (-0400) Subject: Fix tab introduced in f43946829ce037 X-Git-Tag: tor-0.2.4.2-alpha~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb8f64cdc80195af4c62c17db1dabebbd48b0ec1;p=thirdparty%2Ftor.git Fix tab introduced in f43946829ce037 --- diff --git a/src/or/config.c b/src/or/config.c index f38e6863b4..8f79c44cc1 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -7310,7 +7310,7 @@ getinfo_helper_config(control_connection_t *conn, const char *type; /* don't tell controller about triple-underscore options */ if (!strncmp(_option_vars[i].name, "___", 3)) - continue; + continue; switch (var->type) { case CONFIG_TYPE_STRING: type = "String"; break; case CONFIG_TYPE_FILENAME: type = "Filename"; break;