CVSROOT: /cvs Module name: src Changes by: p...@cvs.openbsd.org 2009/06/02 17:36:40
Modified files: usr.sbin/httpd/src/include: http_protocol.h httpd.h usr.sbin/httpd/src/main: http_protocol.c Log message: Fix the way apache reports Content-Length by promoting the clength field of request_rec from long to off_t, which makes it 64bit on i386. This allows files bigger than 2gig to be correctly served on arches where long is only 32bits. Warning: this introduces an ABI break, and hence some third party apache modules will need to be rebuilt to correctly link to this new apache. ok miod@, deraadt@