- Appended to comment:
drh added on 2008-11-27 13:26:43:
Fixed by check-in 39bbc6010e - Change resolution to "Fixed"
- Change status to "Fixed"
- 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.)"
- Change foundin to "a8c3a7ea92 2008-11-22T19:32:44"
- Change private_contact to "6b7d8d19b3584e0b0b59ee79d0f778ecd9f60111"
- Change severity to "Cosmetic"
- Change status to "Open"
- Change title to ""zip.c" has two minor bugs."
- Change type to "Code_Defect"