diff options
author | Michael Adam <obnox@samba.org> | 2010-12-01 22:21:11 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-12-01 22:25:44 +0100 |
commit | 8fd3808ad315fcdf84648a2378324cfab21df0c1 (patch) | |
tree | 45f9b7d30bcb3104d74c9a658f31c1d1479317c6 | |
parent | 62443a63918e7c3ccb02fd4522c012a06a36644b (diff) | |
download | tinyproxy-8fd3808ad315fcdf84648a2378324cfab21df0c1.tar.gz tinyproxy-8fd3808ad315fcdf84648a2378324cfab21df0c1.zip |
[BB#95] remove two comments that have become wrong by the fix.
Diffstat (limited to '')
-rw-r--r-- | src/transparent-proxy.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/transparent-proxy.c b/src/transparent-proxy.c index d34fa4e..843f22c 100644 --- a/src/transparent-proxy.c +++ b/src/transparent-proxy.c @@ -85,9 +85,6 @@ do_transparent_proxy (struct conn_s *connptr, hashmap_t hashofheaders, request->path = (char *) safemalloc (ulen + 1); strlcpy (request->path, *url, ulen + 1); - /* url overwritten by the call below is the url passed - * to this function, and is not the url variable in the - * caller. */ build_url (url, request->host, request->port, request->path); log_message (LOG_INFO, "process_request: trans IP %s %s for %d", @@ -103,9 +100,6 @@ do_transparent_proxy (struct conn_s *connptr, hashmap_t hashofheaders, request->path = (char *) safemalloc (ulen + 1); strlcpy (request->path, *url, ulen + 1); - /* url overwritten by the call below is the url passed - * to this function, and is not the url variable in the - * caller. */ build_url (url, request->host, request->port, request->path); log_message (LOG_INFO, "process_request: trans Host %s %s for %d", |