diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-07-27 22:35:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-07-27 22:35:09 +0000 |
commit | a88deadd6f85a6ac3b7f9d574bbb7eaab3115700 (patch) | |
tree | a5f2d1abcef1c274155632d5254b86980fc64587 /lib/formdata.h | |
parent | e6ea8f11992e22cc73d7f6a5380cea31ce11d179 (diff) | |
download | curl-a88deadd6f85a6ac3b7f9d574bbb7eaab3115700.tar.gz |
Yves Lejeune fixed so that replacing Content-Type: when doing multipart
formposts work exactly the way you want it (and the way you'd assume it
works)
Diffstat (limited to 'lib/formdata.h')
-rw-r--r-- | lib/formdata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/formdata.h b/lib/formdata.h index c6a78cdee..304d009ed 100644 --- a/lib/formdata.h +++ b/lib/formdata.h @@ -8,7 +8,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2006, 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 @@ -69,6 +69,7 @@ int Curl_FormInit(struct Form *form, struct FormData *formdata ); CURLcode Curl_getFormData(struct FormData **, struct curl_httppost *post, + const char *custom_contenttype, curl_off_t *size); /* fread() emulation */ |