From: Sebastian Hahn Date: Fri, 30 Dec 2011 17:06:41 +0000 (+0100) Subject: Fix spelling in a controlsocket log msg X-Git-Tag: tor-0.2.3.11-alpha~57^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d861b4cc9dcf5eda95d6d49b1f6d83cad4530ba0;p=thirdparty%2Ftor.git Fix spelling in a controlsocket log msg Fixes bug 4803. --- diff --git a/changes/bug4803 b/changes/bug4803 new file mode 100644 index 0000000000..cd25266c75 --- /dev/null +++ b/changes/bug4803 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Correctly spell "connect" in a log message when creating a controlsocket + fails. Fixes bug 4803; bugfix on 0.2.2.26-beta/0.2.3.2-alpha. + diff --git a/src/or/connection.c b/src/or/connection.c index d36a37aba6..a3481ece30 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -880,7 +880,7 @@ check_location_for_unix_socket(or_options_t *options, const char *path) log_warn(LD_GENERAL, "Before Tor can create a control socket in %s, the " "directory %s needs to exist, and to be accessible only by the " "user%s account that is running Tor. (On some Unix systems, " - "anybody who can list a socket can conect to it, so Tor is " + "anybody who can list a socket can connect to it, so Tor is " "being careful.)", escpath, escdir, options->ControlSocketsGroupWritable ? " and group" : ""); tor_free(escpath);