diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-05-29 07:43:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-05-29 07:43:43 +0000 |
commit | c9188e22609a453a0b67109328e0aa8fa040ef0b (patch) | |
tree | 3db6e5cccb8c669dc94936c5da0470ea7c129a73 /lib | |
parent | 15eaf27bc7b4ad33af275b9cd0601ef19d54ac9c (diff) |
corrected comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1842,14 +1842,14 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, break; case CURLOPT_SSLKEY: /* - * String that holds file name of the SSL certificate to use + * String that holds file name of the SSL key to use */ result = setstropt(&data->set.str[STRING_KEY], va_arg(param, char *)); break; case CURLOPT_SSLKEYTYPE: /* - * String that holds file type of the SSL certificate to use + * String that holds file type of the SSL key to use */ result = setstropt(&data->set.str[STRING_KEY_TYPE], va_arg(param, char *)); |