X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2FChangeLog;h=35c7fdfc6b4984c194e31f419a3c6b6547336cf7;hb=db9855f2be9bd52033db55cab57697894edd6884;hp=1b74862d61b16aca07515d8e4dfb0a11c658f0a8;hpb=1d84ce751bf3fe3fdb1d866b63f18c90cf001258;p=wget diff --git a/src/ChangeLog b/src/ChangeLog index 1b74862d..35c7fdfc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,40 @@ +2005-04-09 Hrvoje Niksic + + * http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for + ntlmbuf. Our base64 functions accept char anyway. + (ntlm_output): Join up the format string, since we nominally + support K&R compilers. + (ntlm_output): Ditto. + +2005-04-08 Hrvoje Niksic + + * ptimer.c: Use Windows timers under Cygwin, whose POSIX timer + implementation is incomplete. + +2005-04-08 Hrvoje Niksic + + * ptimer.c (struct ptimer): Remove the unused initialized field. + + * ptimer.c: Renamed function parameters from WT (which used to + stand for wget_timer or wtimer) to PT. + +2005-04-08 Hrvoje Niksic + + * ptimer.c (posix_init): Be smarter about choosing clocks. In + decreasing order of preference, use CLOCK_MONOTONIC, + CLOCK_HIGHRES, and CLOCK_REALTIME. + (ptimer_allocate): Removed. + + * ptimer.c: Refactor the code by cleanly separating the + architecture-dependent code from the architecture-independent + code. + +2005-04-08 Hrvoje Niksic + + * ptimer.c (ptimer_init): Explicitly check that + _POSIX_MONOTONIC_CLOCK is *both* defined and >=0. (Undefined + symbols are >=0.) + 2005-04-08 Hrvoje Niksic * ptimer.c (ptimer_diff): Fix typo affecting Windows build.