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

(-)www/oops/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	oops
8
PORTNAME=	oops
9
PORTVERSION=	${OOPSVERSION}
9
PORTVERSION=	${OOPSVERSION}
10
PORTREVISION=	2
10
PORTREVISION=	3
11
CATEGORIES=	www
11
CATEGORIES=	www
12
MASTER_SITES=	http://oops-cache.org/
12
MASTER_SITES=	http://oops-cache.org/
13
DISTNAME=	${PORTNAME}-${OOPSVERSION}
13
DISTNAME=	${PORTNAME}-${OOPSVERSION}
(-)www/oops/files/patch-src_modules_redir.c (+19 lines)
Added Link Here
1
2
$FreeBSD$
3
4
--- src/modules/redir.c.orig	Thu Oct 16 18:21:59 2003
5
+++ src/modules/redir.c	Sun Oct  3 17:23:08 2004
6
@@ -349,11 +349,9 @@
7
 
8
 	/* if this is not on my port */
9
 	while( n ) {
10
-	    if (    mp->port == port
11
-	         && (  (mp->in_addr.s_addr == INADDR_ANY)
12
-	             ||(mp->in_addr.s_addr == rq->my_sa.sin_addr.s_addr) ) )
13
-	         break;
14
+	    if ( mp->so == rq->accepted_so )
15
+		 break;
16
	    n--;mp++;
17
 	}
18
 	if ( !n ) return(MOD_CODE_OK);	/* not my */
19
     }

Return to bug 72710