bd0afd8d | 14-Aug-2001 |
Daniel Stenberg |
removed the use of the global array for the password that was necessary for OpenSSL versions prior to 0.9.4, this is conditional and should still work with older versions. |
2d68ea45 | 14-Aug-2001 |
Daniel Stenberg |
size_t and const |
5f42ef8f | 14-Aug-2001 |
Daniel Stenberg |
cleaned up some of the size_t and const mess |
dff01454 | 14-Aug-2001 |
Daniel Stenberg |
removed unused code, added const |
8e1f95ac | 14-Aug-2001 |
Daniel Stenberg |
cleaned up some picky compiler warnings and indented the code curl style |
95e7e551 | 14-Aug-2001 |
Daniel Stenberg |
added const char * => char * typecast |
5afc6948 | 14-Aug-2001 |
Daniel Stenberg |
const-ified lots of function arguments |
b1c57788 | 14-Aug-2001 |
Daniel Stenberg |
const-ified the code, removed Curl_ldap_done() |
3d4bb3be | 14-Aug-2001 |
Daniel Stenberg |
fixed picky compiler warnings, unused arguments, const at proper places and I also indented the source code to fit curl "standard" |
0c063f85 | 14-Aug-2001 |
Daniel Stenberg |
Curl_httpchunk_read now takes size_t size arguments instead of the previous ssize_t |
c11a1bf7 | 14-Aug-2001 |
Daniel Stenberg |
made some char * into const char * and I removed the check for size > 0 in the add_buffer function. |
f1955020 | 14-Aug-2001 |
Daniel Stenberg |
added const to the prompt char * in the proto |
4df9d944 | 14-Aug-2001 |
Daniel Stenberg |
added typecast when converting const char * to char * |
9a7fc9ce | 14-Aug-2001 |
Daniel Stenberg |
added const to the function protos |
9fa464aa | 14-Aug-2001 |
Daniel Stenberg |
Curl_ftpsendf's third argument is now a const char * |
d95ed06a | 14-Aug-2001 |
Daniel Stenberg |
corrected the size_t weirdness. Expect size_t to be unsigned. Moved most over to ssize_t that is signed. Removed all the special-purpose VMS #ifdefs that were added for this. |
5abe5f66 | 14-Aug-2001 |
Daniel Stenberg |
added a few consts and a few typecasts to please picky compiler options |
e9e5197c | 14-Aug-2001 |
Daniel Stenberg |
size_t => ssize_t, removed the special VMS fix for that purpose |
7b4b1667 | 14-Aug-2001 |
Daniel Stenberg |
added typecasts when converting from unsigned int to int |
e32641d4 | 14-Aug-2001 |
Daniel Stenberg |
Added an empty win32_cleanup for non-windows systems to prevent compiler warnings, changed the Curl_open() call as the second argument was never used anyway |
1603f647 | 14-Aug-2001 |
Daniel Stenberg |
removed the *done() function as it served no purpose, added type casts when converting from 'const char *' to 'char *' to please my picky compiler options |
c8926138 | 14-Aug-2001 |
Daniel Stenberg |
commented out empty else blocks to shut up pedantic compilers |
ab6c8a06 | 14-Aug-2001 |
Daniel Stenberg |
Added 'const' to the string arrays |
f35b6e90 | 14-Aug-2001 |
Daniel Stenberg |
corrected dubious use of the same variable twice in a function call, gcc 3.0 warned about it |
b4956530 | 13-Aug-2001 |
Daniel Stenberg |
curl_formparse() should no longer have any size-limit in the data section after this patch from Peter Todd |