1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

tests: Corrected infilesize for CRLF line endings

... which was missed in commit: f5c3d95384
This commit is contained in:
Steve Holme 2013-05-03 18:27:06 +01:00
parent f5c3d95384
commit e2c7e19144

View File

@ -70,7 +70,7 @@ int main(int argc, char *argv[])
slist1 = curl_slist_append(slist1, "1406@foobar.example");
hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, (curl_off_t)34);
curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, (curl_off_t)38);
curl_easy_setopt(hnd, CURLOPT_URL, "smtp://%HOSTIP:%SMTPPORT/user");
curl_easy_setopt(hnd, CURLOPT_HEADER, 1L);
curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L);