diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-06 12:36:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-06 12:36:18 +0000 |
commit | 2cf45f68b095f478a8a80a2acb5e0ea54e49db70 (patch) | |
tree | 00e5795a45f14d2ea98f334cc31f850c251bc51e /lib/formdata.h | |
parent | 7950a954011e5bf5acc3a5ca1627a28d41ff0ec7 (diff) | |
download | curl-2cf45f68b095f478a8a80a2acb5e0ea54e49db70.tar.gz |
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/formdata.h')
-rw-r--r-- | lib/formdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |