Skip to content
Snippets Groups Projects
Commit d4489650 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Curl_SOCKS4: minor code compression

parent 9afb3433
No related branches found
No related tags found
No related merge requests found
......@@ -284,10 +284,7 @@ CURLcode Curl_SOCKS4(const char *proxy_name,
/* Result */
switch(socksreq[1]) {
case 90:
if(protocol4a)
infof(data, "SOCKS4a request granted.\n");
else
infof(data, "SOCKS4 request granted.\n");
infof(data, "SOCKS4%s request granted.\n", protocol4a?"a":"");
break;
case 91:
failf(data,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment