]> sjero.net Git - wget/blobdiff - src/ChangeLog
[svn] Only set a flag in the SIGWINCH handler.
[wget] / src / ChangeLog
index e2a0afe1b3433dd070d95ff454f237bf61b12903..59f0c8c4d16cf33b82111675d908c1c829aca68b 100644 (file)
@@ -1,3 +1,86 @@
+2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * progress.c (progress_handle_sigwinch): Don't call
+       determine_screen_width() from the signal handler.  Instead, just
+       set a volatile variable.
+       (bar_create): Check whether SIGWINCH was received.
+       (bar_update): Ditto.
+
+       * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * utils.c (xsleep): New function.  Uses nanosleep where available,
+       resuming sleeps interrupted by signals.  Updated callers of sleep
+       and usleep to use xsleep.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
+       declaration of SEED.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * log.c (logvprintf): Documented better.  Renamed to
+       log_vprintf_internal to avoid confusion with the public API
+       functions logprintf and logputs.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * wget.h (N_): Don't parenthesize argument.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
+       because that doesn't work on machines that define it as bitfield.
+
+2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * connect.c (select_fd): Generalize the third argument into WAIT,
+       so that the caller can request waiting for both read and write.
+       Updated callers.
+
+2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * html-url.c (cleanup_html_url): Destroy the hash tables, don't
+       just call free on them.
+       (init_interesting): Use hash_table_put instead of string_set_add
+       because we don't need the strdup that the latter function
+       performs.
+
+       * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
+
+       * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
+       (xfree_debug): Print at the file and line of the offending call to
+       free.
+
+2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
+       define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
+
+       * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
+       definition from wget.h to xmalloc.h.
+
+2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * html-parse.c (decode_entity): New function; split the decoding
+       of entities here.
+       (convert_and_copy): Use it to decode entities.
+       (decode_entity): Handle the &apos entity.
+       (decode_entity): Don't decode Latin 1 numeric entities.  Don't
+       decode &#0.
+
+2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
+       `unsigned long' for the cheksum array.  Document the function.
+
+2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * connect.c (acceptport): Don't call select_fd when timeout is not
+       requested.
+
 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * host.c: Removed the ip_default_family global variable.