_ Adapt OS400 EBCDIC wrappers to new options.

_ Update RPG binding accordingly.
_ Fix new options comments.
This commit is contained in:
Patrick Monnerat
2008-10-10 15:54:07 +00:00
parent 0722e91eb9
commit bb1f6e6818
4 changed files with 12 additions and 4 deletions

View File

@@ -728,7 +728,7 @@ curl_formadd_ccsid(struct curl_httppost * * httppost,
/* Allocate the local curl_forms array. */
lformlen = ALLOC_GRANULE;
lforms = malloc(lformlen * sizeof(struct curl_forms));
lforms = malloc(lformlen * sizeof *lforms);
if (!lforms)
return CURL_FORMADD_MEMORY;
@@ -1030,7 +1030,7 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
if (testwarn) {
testwarn = 0;
if ((int) STRING_LAST != (int) STRING_SSL_ISSUERCERT + 1)
if ((int) STRING_LAST != (int) STRING_PASSWORD + 1)
curl_mfprintf(stderr,
"*** WARNING: curl_easy_setopt_ccsid() should be reworked ***\n");
}
@@ -1075,6 +1075,8 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
case CURLOPT_SSH_HOST_PUBLIC_KEY_MD5:
case CURLOPT_CRLFILE:
case CURLOPT_ISSUERCERT:
case CURLOPT_USERNAME:
case CURLOPT_PASSWORD:
s = va_arg(arg, char *);
ccsid = va_arg(arg, unsigned int);