Starting now, the verbose text that goes like "About to connect() to" will
authorDaniel Stenberg <daniel@haxx.se>
Thu, 29 Sep 2005 11:37:52 +0000 (11:37 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 29 Sep 2005 11:37:52 +0000 (11:37 +0000)
now contain the word "proxy" is the hostname is in fact a proxy. This will
help users detect situations when they mistakenly use a proxy.

lib/url.c

index f84ee37..3f11b3e 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -2001,7 +2001,8 @@ static CURLcode ConnectPlease(struct connectdata *conn,
   struct SessionHandle *data = conn->data;
   char *hostname = data->change.proxy?conn->proxy.name:conn->host.name;
 
-  infof(data, "About to connect() to %s port %d\n",
+  infof(data, "About to connect() to %s%s port %d\n",
+        data->change.proxy?"proxy ":"",
         hostname, conn->port);
 
   /*************************************************************