diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-23 09:07:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-23 09:07:04 +0000 |
commit | b6241b3c89110288c8bf7460c7e7c01d586979ed (patch) | |
tree | e96d79ea6331122c42f8e5a85e80f85cea35ab4a /perl/Curl_easy/easy.xs | |
parent | 1e14f8d4c7e215f5268037d5da52a2d1a4efbf05 (diff) | |
download | curl-b6241b3c89110288c8bf7460c7e7c01d586979ed.tar.gz |
curl_setopt() should be curl_easy_setopt()
Diffstat (limited to 'perl/Curl_easy/easy.xs')
-rw-r--r-- | perl/Curl_easy/easy.xs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl/Curl_easy/easy.xs b/perl/Curl_easy/easy.xs index 2fedd904d..1b09b19a0 100644 --- a/perl/Curl_easy/easy.xs +++ b/perl/Curl_easy/easy.xs @@ -205,15 +205,15 @@ CODE: if (option < CURLOPTTYPE_OBJECTPOINT) { /* This is an option specifying an integer value: */ long value = (long)SvIV(ST(2)); - RETVAL = curl_setopt(curl, option, value); + RETVAL = curl_easy_setopt(curl, option, value); } else if (option == CURLOPT_FILE || option == CURLOPT_INFILE || option == CURLOPT_WRITEHEADER) { /* This is an option specifying a FILE * value: */ FILE * value = IoIFP(sv_2io(ST(2))); - RETVAL = curl_setopt(curl, option, value); + RETVAL = curl_easy_setopt(curl, option, value); } else if (option == CURLOPT_ERRORBUFFER) { SV *sv; - RETVAL = curl_setopt(curl, option, errbuf); + RETVAL = curl_easy_setopt(curl, option, errbuf); if (errbufvarname) free(errbufvarname); errbufvarname = strdup(value); sv = perl_get_sv(errbufvarname, TRUE | GV_ADDMULTI); @@ -224,7 +224,7 @@ CODE: RETVAL = -1; } else { /* default, option specifying a char * value: */ - RETVAL = curl_setopt(curl, option, value); + RETVAL = curl_easy_setopt(curl, option, value); } OUTPUT: RETVAL |