commit a4ee2c5b39afbaa269b0458a2803aff0e336f307 Author: Robert Hogan robert@roberthogan.net Date: Mon Feb 14 22:17:30 2011 +0000
More renaming of tsocks to torsocks --- src/dead_pool.c | 2 +- src/parser.c | 4 ++-- src/torsocks.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/dead_pool.c b/src/dead_pool.c index c3d8b9b..bba90d3 100644 --- a/src/dead_pool.c +++ b/src/dead_pool.c @@ -754,7 +754,7 @@ our_getipnodebyname(dead_pool *pool, const char *name, int af, int flags, service their request. */ if((flags & AI_V4MAPPED) == 0) { show_msg(MSGWARN, "getipnodebyname: asked for V6 addresses only, " - "but tsocks can't handle that\n"); + "but torsocks can't handle that\n"); *error_num = NO_RECOVERY; return NULL; } else { diff --git a/src/parser.c b/src/parser.c index 9234f8d..592af18 100644 --- a/src/parser.c +++ b/src/parser.c @@ -294,7 +294,7 @@ static int handle_endpath(struct parsedfile *config, int lineno, int nowords) {
/* We could perform some checking on the validty of data in */ /* the completed path here, but thats what verifyconf is */ - /* designed to do, no point in weighing down libtsocks */ + /* designed to do, no point in weighing down libtorsocks */
return(0); } @@ -366,7 +366,7 @@ static int handle_server(struct parsedfile *config, int lineno, char *value) { ip = strsplit(NULL, &value, " ");
/* We don't verify this ip/hostname at this stage, */ - /* its resolved immediately before use in tsocks.c */ + /* its resolved immediately before use in torsocks.c */ if (currentcontext->address == NULL) currentcontext->address = strdup(ip); else { diff --git a/src/torsocks.h b/src/torsocks.h index e75e9a8..396aa5e 100644 --- a/src/torsocks.h +++ b/src/torsocks.h @@ -18,7 +18,7 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -/* torsocks.h - Structures used by tsocks to form SOCKS requests */ +/* torsocks.h - Structures used by torsocks to form SOCKS requests */
#ifndef _TORSOCKS_H
tor-commits@lists.torproject.org