Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-20 | fix the treatment of the parameter-based precision, as in "%.*s%s" as | Daniel Stenberg | |
previously the second %s would wrongly get the numerical argument that is used for the variable precision for the first %s... | |||
2007-11-05 | removed space after if and while before the parenthesis for better source code | Daniel Stenberg | |
consistency | |||
2007-08-09 | fixed a warning which MingW gcc 4.2.1. | Gunter Knauf | |
2007-02-28 | proper symbol definition check for all AmigaOS flavours | Yang Tse | |
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-01 | compiler warning fix | Yang Tse | |
2006-10-17 | Avoid typecasting a signed char to an int when using is*() functions, as that | Daniel Stenberg | |
could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values. | |||
2006-07-06 | Undefine correct symbol. | Gisle Vanem | |
2006-07-05 | Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc. | Gisle Vanem | |
So avoid using x_was_used(). | |||
2005-07-13 | Diego Casorran patches to make (lib)curl build fine on Amiga again | Daniel Stenberg | |
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2004-12-15 | Add 'const' to immutable arrays. | Dan Fandrich | |
2004-12-14 | Removed fputc() prototype since it's already in stdio.h | Dan Fandrich | |
2004-11-08 | Un-do changes for WinCE; cdecl decoration is not needed. | Gisle Vanem | |
Confirmed by Paul Nolan. | |||
2004-11-02 | use ifdef not if | Daniel Stenberg | |
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-06-24 | Replaced all uses of sprintf() with the safer snprintf(). It is just a | Daniel Stenberg | |
precaution to prevent mistakes to lead to buffer overflows. | |||
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
2004-05-12 | return faster when we "hit a wall" while printfing | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-05-10 | the aprintf() versions now return NULL if _any_ alloc along the way failed, | Daniel Stenberg | |
previously they could return a piece of the string, making it impossible for the caller to detect errors. | |||
2004-05-05 | prevent warnings when using the gcc option -Wunreachable-code | Daniel Stenberg | |
2004-03-23 | stricter variable type usage | Daniel Stenberg | |
2004-03-08 | don't use 'register' | Daniel Stenberg | |
make strtol() returns get stored in long variables don't mix size_t with int | |||
2004-03-01 | fixed the test code to work | Daniel Stenberg | |
2004-03-01 | Support 'z' for size_t-sized integer printing, as in %zd or %zx. | Daniel Stenberg | |
2004-02-26 | use %ld when printf()ing long variables (and removed use of 'register') | Daniel Stenberg | |
2004-02-25 | disable the use of long double, we don't use it | Daniel Stenberg | |
2004-02-25 | Based on a patch by Greg Hewgill I modified how long long is used, as we | Daniel Stenberg | |
can use a 64bit type with MSVC that is a long long equivalent. | |||
2004-02-21 | added some extra typecasts to prevent compiler warnings when converting | Daniel Stenberg | |
int to various types | |||
2004-02-20 | No longer support Z as a flag to print size_t, it isn't used by libcurl | Daniel Stenberg | |
and I doubt anyone else uses it. Better preprocessor magic for the O flag (for curl_off_t printing) to prevent compiler warnings. | |||
2004-01-29 | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | |
warnings. Minor edits by me. | |||
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg | |
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg | |
2003-10-26 | snprintf() made a single-byte buffer overflow, as it could write a zero | Daniel Stenberg | |
outside its given buffer. Discovered and reported by James Bursa. | |||
2003-08-19 | Respect HAVE_LONGLONG to support 'long long' | Daniel Stenberg | |
2003-08-06 | fix the treatment of the variable width specifier '*', which caused a bug | Daniel Stenberg | |
in the urlglobbing just now, fixed in the debian bug tracker as Bug#203827 | |||
2003-06-26 | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | |
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-16 | reverted bad header replacement | Daniel Stenberg | |
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2002-05-21 | maprintf() and vmaprintf() now work better when printfing "%s" with an | Daniel Stenberg | |
empty string | |||
2002-02-18 | fixed a long long mistake | Daniel Stenberg | |
2002-01-18 | #ifndef and #define magic to prevent compiler warnings when doing #if BLA | Daniel Stenberg | |
where BLA is undefined | |||
2002-01-18 | cut off a big piece of comment and added a pointer to the Trio web page | Daniel Stenberg | |
should anyone ever want a good printf() clone | |||
2001-11-27 | Eric Lavigne updates | Daniel Stenberg | |
2001-11-12 | made CURLOPT_HTTPPROXYTUNNEL work for plain HTTP as well | Daniel Stenberg | |
2001-11-12 | include setup.h | Daniel Stenberg | |
2001-10-11 | looks nicer and is better compatible with older vim versions | Sterling Hughes | |
2001-09-07 | Added formatting sections for emacs and vim | Sterling Hughes | |