From 2e48139fbf44283a07f02978095d50bdcb112b9f Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Thu, 7 Jun 2012 23:08:35 +0200
Subject: [PATCH] lib554.c: use curl_formadd() properly

The length/size options take longs so make sure to pass on such types.

Reported by: Neil Bowers
Bug: http://curl.haxx.se/mail/lib-2012-06/0001.html
---
 tests/libtest/lib554.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/libtest/lib554.c b/tests/libtest/lib554.c
index d20429d91e..0596f3ef19 100644
--- a/tests/libtest/lib554.c
+++ b/tests/libtest/lib554.c
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -88,7 +88,7 @@ int test(char *URL)
                         &lastptr,
                         CURLFORM_COPYNAME, "sendfile",
                         CURLFORM_STREAM, &pooh,
-                        CURLFORM_CONTENTSLENGTH, pooh.sizeleft,
+                        CURLFORM_CONTENTSLENGTH, (long)pooh.sizeleft,
                         CURLFORM_FILENAME, "postit2.c",
                         CURLFORM_END);
 
@@ -106,7 +106,7 @@ int test(char *URL)
                         &lastptr,
                         CURLFORM_COPYNAME, "callbackdata",
                         CURLFORM_STREAM, &pooh2,
-                        CURLFORM_CONTENTSLENGTH, pooh2.sizeleft,
+                        CURLFORM_CONTENTSLENGTH, (long)pooh2.sizeleft,
                         CURLFORM_END);
 
   if(formrc)
@@ -149,7 +149,7 @@ int test(char *URL)
                         CURLFORM_COPYNAME, "somename",
                         CURLFORM_BUFFER, "somefile.txt",
                         CURLFORM_BUFFERPTR, "blah blah",
-                        CURLFORM_BUFFERLENGTH, 9,
+                        CURLFORM_BUFFERLENGTH, (long)9,
                         CURLFORM_END);
 
   if(formrc)