diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-02-21 15:25:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-02-21 15:25:22 +0000 |
commit | 9ac99a80c3ba23142d530d3d9c87e406a843039f (patch) | |
tree | 19b34b726815ee550559e51b926f3495fb5ae851 /src | |
parent | a15d107dde68f6173cfb1a590320cb108d4dd0f5 (diff) |
two typos in comments
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 89289db8b..88282a01d 100644 --- a/src/main.c +++ b/src/main.c @@ -1685,7 +1685,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ GetStr(&config->socksproxy, nextarg); config->socksver = CURLPROXY_SOCKS5; break; - case 't': /* --socks4 specifies a socks5 proxy to use */ + case 't': /* --socks4 specifies a socks4 proxy to use */ GetStr(&config->socksproxy, nextarg); config->socksver = CURLPROXY_SOCKS4; break; @@ -4186,7 +4186,7 @@ show_error: /* Important that we set the time _after_ the file has been closed, as is done above here */ if(config->remote_time && outs.filename) { - /* as libcurl if we got a time. Pretty please */ + /* ask libcurl if we got a time. Pretty please */ long filetime; curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); if(filetime >= 0) { |