commit 2cb59be9993ecec13ceabc0c4754e52f8c5ea4e5 Author: Peter Palfrader peter@palfrader.org Date: Mon Jul 15 15:08:35 2013 +0200
Fix two pre-coffee typos --- src/common/compat.c | 2 +- src/or/connection.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/common/compat.c b/src/common/compat.c index 391f175..0e943f3 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1754,7 +1754,7 @@ get_user_homedir(const char *username) * them for purposes of finding the parent directory. * * Returns 0 if a parent directory was successfully found, -1 otherwise (fname - * did not have any path separators or only had them ad the end). + * did not have any path separators or only had them at the end). * */ int get_parent_directory(char *fname) diff --git a/src/or/connection.c b/src/or/connection.c index edcf966..6a3cc7b 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -879,7 +879,7 @@ check_location_for_unix_socket(const or_options_t *options, const char *path) cpd_check_t flags = CPD_CHECK_MODE_ONLY; if (get_parent_directory(p)<0 || p[0] != '/') { log_warn(LD_GENERAL, "Bad unix socket address '%s'. Tor does not support " - "relative patchs for unix sockets.", path); + "relative paths for unix sockets.", path); goto done; }
tor-commits@lists.torproject.org