diff options
author | Taylor Yu <catalyst@torproject.org> | 2019-01-04 17:23:52 -0600 |
---|---|---|
committer | Taylor Yu <catalyst@torproject.org> | 2019-01-04 17:27:28 -0600 |
commit | 7e753117146266fa39841b4cc9fa63febfe9e92a (patch) | |
tree | 5dd875b186e529a74df84bacd2583a0af9de816c /src/feature/control | |
parent | c5a216fe1bf2dc19fbe71680a78b98c51e7db190 (diff) | |
download | tor-7e753117146266fa39841b4cc9fa63febfe9e92a.tar.gz tor-7e753117146266fa39841b4cc9fa63febfe9e92a.zip |
Fix typo in bootstrap message
The message for the "ap_conn_proxy" bootstrap status tag was missing
some text. Fixes bug 28929. Bug not in any released Tor.
Diffstat (limited to 'src/feature/control')
-rw-r--r-- | src/feature/control/control_bootstrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/control/control_bootstrap.c b/src/feature/control/control_bootstrap.c index 49e190dc51..d7a0438513 100644 --- a/src/feature/control/control_bootstrap.c +++ b/src/feature/control/control_bootstrap.c @@ -73,7 +73,7 @@ static const struct { { BOOTSTRAP_STATUS_AP_CONN_DONE_PT, "ap_conn_done_pt", "Connected to pluggable transport to build circuits" }, { BOOTSTRAP_STATUS_AP_CONN_PROXY, "ap_conn_proxy", - "Connecting to proxy " }, + "Connecting to proxy to build circuits" }, { BOOTSTRAP_STATUS_AP_CONN_DONE_PROXY, "ap_conn_done_proxy", "Connected to proxy to build circuits" }, { BOOTSTRAP_STATUS_AP_CONN, "ap_conn", |