History Of Ticket e28adcd725
Not logged in
Ticket change [0d37aa2b8d] (rid 4027) by drh on 2008-11-27 13:26:43:
  1. Appended to comment:

    drh added on 2008-11-27 13:26:43:
    Fixed by check-in 39bbc6010e

  2. Change resolution to "Fixed"
  3. Change status to "Fixed"
Ticket change [3a71fa5727] (rid 4019) by anonymous on 2008-11-27 06:50:17:
  1. Change comment to ""zip.c" has two minor bugs. 1. 'dosTime' time stamp has only 5 bits for 'seconds' field. so it requires devide by 2. (in function 'zip_set_timedate_from_str()') <verbatim>- dosTime = (H<<11) + (M<<5) + S; + dosTime = (H<<11) + (M<<5) + (S>>1);</verbatim> 2. function 'baseline_zip_page()' (as 'WEBPAGE: zip') finally calls 'cgi_reply()', but it not required. because 'cgi_reply()' calls by caller (main.c / process_one_web_page()) after this function returned. current version try to send '.zip' file twice. (almost http client checks 'Content-Length' header and shutdown themself first '.zip' file received. so this bug did not generate twice traffic.)"
  2. Change foundin to "a8c3a7ea92 2008-11-22T19:32:44"
  3. Change private_contact to "6b7d8d19b3584e0b0b59ee79d0f778ecd9f60111"
  4. Change severity to "Cosmetic"
  5. Change status to "Open"
  6. Change title to ""zip.c" has two minor bugs."
  7. Change type to "Code_Defect"