#
24b18907 |
| 11-Aug-2008 |
Yang Tse |
s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g
|
#
69aac49f |
| 30-Jun-2008 |
Daniel Stenberg |
made %llu work for printing unsigned long longs, added the generic curl source header
|
Revision tags: curl-7_18_2, curl-7_18_1, curl-7_18_0 |
|
#
2f928797 |
| 20-Nov-2007 |
Daniel Stenberg |
fix the treatment of the parameter-based precision, as in "%.*s%s" as previously the second %s would wrongly get the numerical argument that is used for the variable precision for the first %
fix the treatment of the parameter-based precision, as in "%.*s%s" as previously the second %s would wrongly get the numerical argument that is used for the variable precision for the first %s...
show more ...
|
#
ad6e2807 |
| 05-Nov-2007 |
Daniel Stenberg |
removed space after if and while before the parenthesis for better source code consistency
|
Revision tags: curl-7_17_1, curl-7_17_0, curl-7_17_0-preldapfix |
|
#
3f62bfb6 |
| 09-Aug-2007 |
Gunter Knauf |
fixed a warning which MingW gcc 4.2.1.
|
Revision tags: curl-7_16_4, curl-7_16_3, curl-7_16_2 |
|
#
be8a5d0a |
| 28-Feb-2007 |
Yang Tse |
proper symbol definition check for all AmigaOS flavours
|
#
c514a2a8 |
| 26-Feb-2007 |
Gisle Vanem |
Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files since they're already included through "setup.h".
|
#
54db98c2 |
| 01-Feb-2007 |
Yang Tse |
compiler warning fix
|
Revision tags: curl-7_16_1, curl-7_16_0 |
|
#
44d84ac1 |
| 17-Oct-2006 |
Daniel Stenberg |
Avoid typecasting a signed char to an int when using is*() functions, as that could very well cause a negate number get passed in and thus cause reading outside of the array usually used for
Avoid typecasting a signed char to an int when using is*() functions, as that 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.
show more ...
|
Revision tags: curl-7_15_6-prepipeline, curl-7_15_5 |
|
#
4f012ad7 |
| 06-Jul-2006 |
Gisle Vanem |
Undefine correct symbol.
|
#
c6ae0ebc |
| 05-Jul-2006 |
Gisle Vanem |
Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc. So avoid using x_was_used().
|
Revision tags: curl-7_15_4, curl-7_15_3, curl-7_15_2, curl-7_15_1, curl-7_15_0, curl-7_14_1, c-ares-1_3_0 |
|
#
16bbd13a |
| 13-Jul-2005 |
Daniel Stenberg |
Diego Casorran patches to make (lib)curl build fine on Amiga again
|
Revision tags: curl-7_14_0 |
|
#
6b1220b6 |
| 26-Apr-2005 |
Daniel Stenberg |
Cory Nelson's work on nuking compiler warnings when building on x64 with VS2005.
|
Revision tags: curl-7_13_2, curl-7_13_1, before_ftp_statemachine, curl-7_13_0, curl-7_12_3 |
|
#
1ba47e7a |
| 15-Dec-2004 |
Dan Fandrich |
Add 'const' to immutable arrays.
|
#
358e08b9 |
| 14-Dec-2004 |
Dan Fandrich |
Removed fputc() prototype since it's already in stdio.h
|
#
f471a293 |
| 08-Nov-2004 |
Gisle Vanem |
Un-do changes for WinCE; cdecl decoration is not needed. Confirmed by Paul Nolan.
|
#
4cd5220d |
| 02-Nov-2004 |
Daniel Stenberg |
use ifdef not if
|
#
24d47a6e |
| 02-Nov-2004 |
Daniel Stenberg |
Paul Nolan fix to make libcurl build nicely on Windows CE
|
Revision tags: curl-7_12_2, curl-7_12_1 |
|
#
feb2dd28 |
| 24-Jun-2004 |
Daniel Stenberg |
Replaced all uses of sprintf() with the safer snprintf(). It is just a precaution to prevent mistakes to lead to buffer overflows.
|
#
c39858aa |
| 24-Jun-2004 |
Daniel Stenberg |
Source cleanups. The major one being that we now _always_ use a Curl_addrinfo linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code.
|
Revision tags: pre-aifix, curl-7_12_0 |
|
#
1d7ce367 |
| 12-May-2004 |
Daniel Stenberg |
return faster when we "hit a wall" while printfing
|
#
bbafb2eb |
| 11-May-2004 |
Daniel Stenberg |
curl_global_init_mem() allows the memory functions to be replaced. memory.h is included everywhere for this.
|
#
a2ecdf42 |
| 10-May-2004 |
Daniel Stenberg |
the aprintf() versions now return NULL if _any_ alloc along the way failed, previously they could return a piece of the string, making it impossible for the caller to detect errors.
|
#
4d9517f0 |
| 05-May-2004 |
Daniel Stenberg |
prevent warnings when using the gcc option -Wunreachable-code
|
Revision tags: curl-7_11_2, c-ares-1_2_0 |
|
#
f8426a2c |
| 23-Mar-2004 |
Daniel Stenberg |
stricter variable type usage
|