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.
This commit is contained in:
Daniel Stenberg 2001-08-06 12:36:18 +00:00
parent 7950a95401
commit 2cf45f68b0
3 changed files with 8 additions and 6 deletions

View file

@ -49,6 +49,6 @@ int Curl_FormReader(char *buffer,
char *Curl_FormBoundary(void);
void Curl_FormFree(struct FormData *);
void Curl_formclean(struct FormData *);
#endif