commit 7ffc048f0aeab1b0e828b546df71cb647da443e5 Author: Nick Mathewson nickm@torproject.org Date: Tue Sep 8 14:03:54 2015 -0400
Make NoKeepAliveIsolateSOCKSAuth work as expected --- src/or/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/config.c b/src/or/config.c index db78d52..190e4d4 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -6263,7 +6263,7 @@ parse_port_config(smartlist_t *out, } else if (!strcasecmp(elt, "IsolateClientAddr")) { isoflag = ISO_CLIENTADDR; } else if (!strcasecmp(elt, "KeepAliveIsolateSOCKSAuth")) { - socks_iso_keep_alive = 1; + socks_iso_keep_alive = ! no; } else { log_warn(LD_CONFIG, "Unrecognized %sPort option '%s'", portname, escaped(elt_orig));
tor-commits@lists.torproject.org