gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 127/153: lib1522: fix curl_easy_setopt argument typ


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 127/153: lib1522: fix curl_easy_setopt argument type
Date: Tue, 11 Sep 2018 12:53:18 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 20168b948abc4b6420d811f7a9526211e102f1f3
Author: Marcel Raad <address@hidden>
AuthorDate: Fri Aug 24 21:06:26 2018 +0200

    lib1522: fix curl_easy_setopt argument type
    
    CURLOPT_POSTFIELDSIZE is a long option.
---
 tests/libtest/lib1522.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/libtest/lib1522.c b/tests/libtest/lib1522.c
index 5a47a359c..2de955284 100644
--- a/tests/libtest/lib1522.c
+++ b/tests/libtest/lib1522.c
@@ -54,7 +54,7 @@ int test(char *URL)
   curl_easy_setopt(pCurl, CURLOPT_SOCKOPTFUNCTION, sockopt_callback);
   curl_easy_setopt(pCurl, CURLOPT_URL, URL);
   curl_easy_setopt(pCurl, CURLOPT_POSTFIELDS, g_Data);
-  curl_easy_setopt(pCurl, CURLOPT_POSTFIELDSIZE, sizeof(g_Data));
+  curl_easy_setopt(pCurl, CURLOPT_POSTFIELDSIZE, (long)sizeof(g_Data));
 
   /* Remove "Expect: 100-continue" */
   pHeaderList = curl_slist_append(pHeaderList, "Expect:");

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]