X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2FChangeLog;h=5b0a1b230dc36ccb6cbe082b223dc2ca37540edd;hp=01401296a071d480365f9bf572ad6602573882d0;hb=4b3e1632dbe3ba8f17a24c422f9faeeba8657aa5;hpb=b317cb1c6dabd6390c039acf5b89789f1e8d3959 diff --git a/src/ChangeLog b/src/ChangeLog index 01401296..5b0a1b23 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,47 @@ +2005-06-23 Hrvoje Niksic + + * sysdep.h: Remove code that deals with Watcom. + +2005-06-22 Hrvoje Niksic + + * all: Use bool instead of int and false/true instead of 0/non-0 + for boolean variables and values. + +2005-06-22 Hrvoje Niksic + + * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf. + +2005-06-22 Hrvoje Niksic + + * init.c (cmd_lockable_boolean): Removed. + +2005-06-22 Hrvoje Niksic + + * cookies.c (struct cookie): Use 1-bit bitfields for booleans + which makes the structure takes less space at no cost in + complexity. + +2005-06-22 Hrvoje Niksic + + * Makefile.in ($(OBJ)): Add the config.h dependency. + +2005-06-22 Hrvoje Niksic + + * openssl.c, connect.c, host.c: Replace instances of #ifdef + ENABLE_DEBUG if (opt.debug) {...} #endif with IF_DEBUG {...}. + + * main.c: Rename the IF_DEBUG defined here to WHEN_DEBUG. + + * wget.h (IF_DEBUG): New macro. + (DEBUGP): Define in terms of IF_DEBUG. + +2005-06-22 Hrvoje Niksic + + * http.c (gethttp): Only handle --set-cookies (and assert that + cookie jar exists) if opt.cookies is true. Failure to do so + triggered the assert when --no-cookies was used and the server + sent a Set-Cookie header. Ouch! + 2005-06-22 Hrvoje Niksic * connect.c (select_fd): Expect select() to exist.