Date: 5 Nov 2009 13:25:24 -0200 From: Renato Botelho <garga@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: mnag@FreeBSD.org Subject: ports/140316: [PATCH] www/lighttpd: update to 1.4.24 Message-ID: <20091105152524.35513.qmail@botelhor.bplab.local> Resent-Message-ID: <200911051530.nA5FU6GX012896@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 140316 >Category: ports >Synopsis: [PATCH] www/lighttpd: update to 1.4.24 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Nov 05 15:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Renato Botelho >Release: FreeBSD 9.0-CURRENT i386 >Organization: FreeBSD.org >Environment: System: FreeBSD botelhor.bplab.local 9.0-CURRENT FreeBSD 9.0-CURRENT #95 r198848: Tue Nov 3 10:49:24 >Description: - Update to 1.4.24 Added file(s): - files/patch-src_mod_accesslog.c Port maintainer (mnag@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- lighttpd-1.4.24.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/lighttpd/Makefile,v retrieving revision 1.74 diff -u -u -r1.74 Makefile --- Makefile 2 Aug 2009 19:36:01 -0000 1.74 +++ Makefile 5 Nov 2009 15:25:03 -0000 @@ -6,7 +6,7 @@ # PORTNAME= lighttpd -PORTVERSION= 1.4.23 +PORTVERSION= 1.4.24 CATEGORIES= www MASTER_SITES= http://www.lighttpd.net/download/ \ http://mirrors.cat.pdx.edu/lighttpd/ @@ -133,6 +133,7 @@ -e 's|#server.groupname.*|server.groupname = "www"|' \ -e 's|/usr/local/bin/php|${PREFIX}/bin/php-cgi|' \ ${WRKSRC}/doc/lighttpd.conf + @${TOUCH} ${WRKSRC}/ChangeLog .if !defined(WITHOUT_IPV6) @${ECHO} "" >> ${WRKSRC}/doc/lighttpd.conf @${ECHO} "# Enable IPV6 and IPV4 together" >> ${WRKSRC}/doc/lighttpd.conf Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/lighttpd/distinfo,v retrieving revision 1.38 diff -u -u -r1.38 distinfo --- distinfo 28 Jun 2009 05:07:13 -0000 1.38 +++ distinfo 5 Nov 2009 15:25:03 -0000 @@ -1,3 +1,3 @@ -MD5 (lighttpd-1.4.23.tar.bz2) = 0ab6bb7b17bf0f515ce7dce68e5e215a -SHA256 (lighttpd-1.4.23.tar.bz2) = 72896e6677b12aee2371c12e6d3f8299cfbdb2f89ad4b519a96b3ba80852a5fa -SIZE (lighttpd-1.4.23.tar.bz2) = 641621 +MD5 (lighttpd-1.4.24.tar.bz2) = e2324a24e4a5bce74663c21c58ddd200 +SHA256 (lighttpd-1.4.24.tar.bz2) = 6e643dc4627d742510afee67654291a5190a316f5737dfb463b158a70f24750e +SIZE (lighttpd-1.4.24.tar.bz2) = 622842 Index: files/patch-src_mod_accesslog.c =================================================================== RCS file: files/patch-src_mod_accesslog.c diff -N files/patch-src_mod_accesslog.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src_mod_accesslog.c 5 Nov 2009 15:25:03 -0000 @@ -0,0 +1,13 @@ +--- src/mod_accesslog.c.orig 2009-11-05 12:40:58.000000000 -0200 ++++ src/mod_accesslog.c 2009-11-05 12:41:17.000000000 -0200 +@@ -162,7 +162,9 @@ + if (str->used == 0) return; + buffer_prepare_append(dest, str->used - 1); + +- for (unsigned int i = 0; i < str->used - 1; i++) { ++ unsigned int i; ++ ++ for (i = 0; i < str->used - 1; i++) { + if (str->ptr[i] >= ' ' && str->ptr[i] <= '~') { + /* printable chars */ + buffer_append_string_len(dest, &str->ptr[i], 1); --- lighttpd-1.4.24.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20091105152524.35513.qmail>