diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-04-08 18:41:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-04-08 23:30:53 +0200 |
commit | 8ebc42be048eb523b37b25de0e14a72cc300abc2 (patch) | |
tree | 0fd8d925ff9a06634681da43ae20d9c05ceee66c | |
parent | ebb2ebe18b1c445cb066ca3df539ff37d27e30af (diff) |
socks: fix error message
-rw-r--r-- | lib/socks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/socks.c b/lib/socks.c index 906376dab..c9589bbf9 100644 --- a/lib/socks.c +++ b/lib/socks.c @@ -290,7 +290,7 @@ CURLcode Curl_SOCKS4(const char *proxy_user, /* wrong version ? */ if(socksreq[0] != 0) { failf(data, - "SOCKS4 reply has wrong version, version should be 4."); + "SOCKS4 reply has wrong version, version should be 0."); return CURLE_COULDNT_CONNECT; } |