aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-06 12:36:18 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-06 12:36:18 +0000
commit2cf45f68b095f478a8a80a2acb5e0ea54e49db70 (patch)
tree00e5795a45f14d2ea98f334cc31f850c251bc51e /lib
parent7950a954011e5bf5acc3a5ca1627a28d41ff0ec7 (diff)
Curl_FormFree renamed to Curl_formclean, as it turns out VMS for example
requires all global symbols to be *case insentively* unique! curl_formfree is a global function we shouldn't touch.
Diffstat (limited to 'lib')
-rw-r--r--lib/formdata.c8
-rw-r--r--lib/formdata.h2
-rw-r--r--lib/http.c4
3 files changed, 8 insertions, 6 deletions
diff --git a/lib/formdata.c b/lib/formdata.c
index e7e0dd9ee..41629cc75 100644
--- a/lib/formdata.c
+++ b/lib/formdata.c
@@ -367,8 +367,8 @@ char *Curl_FormBoundary(void)
return retstring;
}
-/* Used from http.c */
-void Curl_FormFree(struct FormData *form)
+/* Used from http.c, this cleans a built FormData linked list */
+void Curl_formclean(struct FormData *form)
{
struct FormData *next;
@@ -501,7 +501,9 @@ struct FormData *Curl_getFormData(struct HttpPost *post,
fileread = strequal("-", file->contents)?stdin:
/* binary read for win32 crap */
- fopen(file->contents, "rb");
+/*VMS??*/ fopen(file->contents, "rb"); /* ONLY ALLOWS FOR STREAM FILES ON VMS */
+/*VMS?? Stream files are OK, as are FIXED & VAR files WITHOUT implied CC */
+/*VMS?? For implied CC, every record needs to have a \n appended & 1 added to SIZE */
if(fileread) {
while((nread = fread(buffer, 1, 1024, fileread))) {
size += AddFormData(&form,
diff --git a/lib/formdata.h b/lib/formdata.h
index 4a0d8509d..35a5ca7a8 100644
--- a/lib/formdata.h
+++ b/lib/formdata.h
@@ -49,6 +49,6 @@ int Curl_FormReader(char *buffer,
char *Curl_FormBoundary(void);
-void Curl_FormFree(struct FormData *);
+void Curl_formclean(struct FormData *);
#endif
diff --git a/lib/http.c b/lib/http.c
index 28292384e..42947749e 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -364,7 +364,7 @@ CURLcode Curl_http_done(struct connectdata *conn)
if(HTTPREQ_POST_FORM == data->httpreq) {
*bytecount = http->readbytecount + http->writebytecount;
- Curl_FormFree(http->sendit); /* Now free that whole lot */
+ Curl_formclean(http->sendit); /* Now free that whole lot */
data->fread = http->storefread; /* restore */
data->in = http->in; /* restore */
@@ -731,7 +731,7 @@ CURLcode Curl_http(struct connectdata *conn)
conn->firstsocket,
&http->writebytecount);
if(result) {
- Curl_FormFree(http->sendit); /* free that whole lot */
+ Curl_formclean(http->sendit); /* free that whole lot */
return result;
}
}