- Update to 1.0.0

PR:             110007
Submitted by:   Frank Behrens <frank@pinky.sax.de> (maintainer
This commit is contained in:
Martin Wilke 2007-03-06 21:01:58 +00:00
parent 08f91b732a
commit 1e43393f7b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=186747
3 changed files with 5 additions and 22 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= polipo
PORTVERSION= 0.9.12
PORTVERSION= 1.0.0
CATEGORIES= www
MASTER_SITES= http://www.pps.jussieu.fr/~jch/software/files/polipo/ \
http://www.sax.de/~frank/polipo4bsd/files/

View File

@ -1,3 +1,3 @@
MD5 (polipo-0.9.12.tar.gz) = ce82913e3698de5d15465fb45dbafa11
SHA256 (polipo-0.9.12.tar.gz) = 6b42de207937d3b13184aab3de2c3a6b9ab0ede92c340b19305f668e191cf205
SIZE (polipo-0.9.12.tar.gz) = 149370
MD5 (polipo-1.0.0.tar.gz) = e9db1fadbce47b8664351d14510bd5c9
SHA256 (polipo-1.0.0.tar.gz) = 0a00d7009fd4c501daa916c354036f3cbd5533c25c7b0efce6b7176fb4ae80ba
SIZE (polipo-1.0.0.tar.gz) = 176618

View File

@ -83,21 +83,4 @@
The default root of the local web space.
.SH SIGNALS
.TP
--- server.c Thu Jan 20 00:21:19 2005
+++ server.c Wed Jul 27 13:24:28 2005
@@ -1783,10 +1783,11 @@
} else if(code < 400 &&
(content_range.from >= 0 || content_range.to >= 0 ||
content_range.full_length >= 0)) {
- do_log(L_ERROR, "Range without partial content.\n");
- httpServerAbort(connection, 1, 502,
- internAtom("Range without partial content"));
- goto fail;
+ do_log(L_WARN, "Range without partial content.\n");
+ /* Damn anakata. */
+ content_range.from = -1;
+ content_range.to = -1;
+ content_range.full_length = -1;
} else if(code != 304 && code != 412) {
full_len = len;
}