View | Details | Raw Unified | Return to bug 110007
Collapse All | Expand All

(-)/usr/local/src/ownports/polipo-stable/port/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	polipo
8
PORTNAME=	polipo
9
PORTVERSION=	0.9.12
9
PORTVERSION=	1.0.0
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	http://www.pps.jussieu.fr/~jch/software/files/polipo/ \
11
MASTER_SITES=	http://www.pps.jussieu.fr/~jch/software/files/polipo/ \
12
		http://www.sax.de/~frank/polipo4bsd/files/
12
		http://www.sax.de/~frank/polipo4bsd/files/
(-)/usr/local/src/ownports/polipo-stable/port/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (polipo-0.9.12.tar.gz) = ce82913e3698de5d15465fb45dbafa11
1
MD5 (polipo-1.0.0.tar.gz) = e9db1fadbce47b8664351d14510bd5c9
2
SHA256 (polipo-0.9.12.tar.gz) = 6b42de207937d3b13184aab3de2c3a6b9ab0ede92c340b19305f668e191cf205
2
SHA256 (polipo-1.0.0.tar.gz) = 0a00d7009fd4c501daa916c354036f3cbd5533c25c7b0efce6b7176fb4ae80ba
3
SIZE (polipo-0.9.12.tar.gz) = 149370
3
SIZE (polipo-1.0.0.tar.gz) = 176618
(-)/usr/local/src/ownports/polipo-stable/port/files/patch-aa (-18 / +1 lines)
Lines 83-103 Link Here
83
 The default root of the local web space.
83
 The default root of the local web space.
84
 .SH SIGNALS
84
 .SH SIGNALS
85
 .TP 
85
 .TP 
86
--- server.c	Thu Jan 20 00:21:19 2005
86
87
+++ server.c	Wed Jul 27 13:24:28 2005
88
@@ -1783,10 +1783,11 @@
89
     } else if(code < 400 && 
90
               (content_range.from >= 0 || content_range.to >= 0 || 
91
                content_range.full_length >= 0)) {
92
-        do_log(L_ERROR, "Range without partial content.\n");
93
-        httpServerAbort(connection, 1, 502,
94
-                        internAtom("Range without partial content"));
95
-        goto fail;
96
+        do_log(L_WARN, "Range without partial content.\n");
97
+        /* Damn anakata. */
98
+        content_range.from = -1;
99
+        content_range.to = -1;
100
+        content_range.full_length = -1;
101
     } else if(code != 304 && code != 412) {
102
         full_len = len;
103
     }

Return to bug 110007