Ticket Change Details
Not logged in

Changes to ticket e28adcd725

By anonymous on 2008-11-27 06:50:17. See also: artifact content, and ticket history

    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"