From owner-svn-ports-all@FreeBSD.ORG Sun Jun 16 15:26:18 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 713E9B5F; Sun, 16 Jun 2013 15:26:18 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4911D1C7C; Sun, 16 Jun 2013 15:26:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5GFQI6X071127; Sun, 16 Jun 2013 15:26:18 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5GFQHZI071125; Sun, 16 Jun 2013 15:26:17 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201306161526.r5GFQHZI071125@svn.freebsd.org> From: Dirk Meyer Date: Sun, 16 Jun 2013 15:26:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321054 - head/mail/pathalias/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2013 15:26:18 -0000 Author: dinoex Date: Sun Jun 16 15:26:17 2013 New Revision: 321054 URL: http://svnweb.freebsd.org/changeset/ports/321054 Log: - rename patches Added: head/mail/pathalias/files/patch-mapit.c - copied unchanged from r321053, head/mail/pathalias/files/patch-aa head/mail/pathalias/files/patch-printit.c - copied unchanged from r321053, head/mail/pathalias/files/patch-ab Deleted: head/mail/pathalias/files/patch-aa head/mail/pathalias/files/patch-ab Copied: head/mail/pathalias/files/patch-mapit.c (from r321053, head/mail/pathalias/files/patch-aa) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/pathalias/files/patch-mapit.c Sun Jun 16 15:26:17 2013 (r321054, copy of r321053, head/mail/pathalias/files/patch-aa) @@ -0,0 +1,14 @@ +*** ./mapit.c Sat Jun 9 12:32:18 1990 +--- ../../m/mapit.c Thu Feb 10 07:00:02 1994 +*************** +*** 298,303 **** +--- 298,306 ---- + || (NETDIR(l) == LRIGHT && (prev->n_flag & HASLEFT))) + cost += INF; /* mixed syntax */ + } ++ /* Dirk meyer 10.02.94 */ ++ if ( cost < 0 ) /* Overflow, more than 31 bit */ ++ cost = INF; /* Limit, to avoid recursive paths */ + + return cost; + } Copied: head/mail/pathalias/files/patch-printit.c (from r321053, head/mail/pathalias/files/patch-ab) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/pathalias/files/patch-printit.c Sun Jun 16 15:26:17 2013 (r321054, copy of r321053, head/mail/pathalias/files/patch-ab) @@ -0,0 +1,23 @@ +diff -c ./printit.c ../../m/printit.c +*** ./printit.c Sat Jun 9 12:32:26 1990 +--- ../../m/printit.c Thu Feb 10 07:08:42 1994 +*************** +*** 27,33 **** + STATIC int printable(); + + /* in practice, even the longest paths are < 100 bytes */ +! #define PATHSIZE 512 + + void + printit() +--- 27,36 ---- + STATIC int printable(); + + /* in practice, even the longest paths are < 100 bytes */ +! /* Dirk meyer 10.02.94 */ +! /* in reality we have reached paths up to 200 bytes */ +! /* the path must fit two times in the buffer */ +! #define PATHSIZE 4096 + + void + printit()