diff options
author | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2008-10-10 15:54:07 +0000 |
---|---|---|
committer | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2008-10-10 15:54:07 +0000 |
commit | bb1f6e681830aba56db14c84512af371877f8601 (patch) | |
tree | 25a5ea85ce1eab7e1ebe8722351c01ff8cf4ca2e /lib | |
parent | 0722e91eb9268ac53bb484f2af63aba80921090a (diff) |
_ Adapt OS400 EBCDIC wrappers to new options.
_ Update RPG binding accordingly.
_ Fix new options comments.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1536,14 +1536,14 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, break; case CURLOPT_USERNAME: /* - * user:password to use in the operation + * authentication user name to use in the operation */ result = setstropt(&data->set.str[STRING_USERNAME], va_arg(param, char *)); break; case CURLOPT_PASSWORD: /* - * user:password to use in the operation + * authentication password to use in the operation */ result = setstropt(&data->set.str[STRING_PASSWORD], va_arg(param, char *)); |