From owner-svn-src-stable@FreeBSD.ORG Tue Oct 26 21:56:47 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92B10106564A; Tue, 26 Oct 2010 21:56:47 +0000 (UTC) (envelope-from mdounin@mdounin.ru) Received: from mdounin.cust.ramtel.ru (mdounin.cust.ramtel.ru [81.19.69.81]) by mx1.freebsd.org (Postfix) with ESMTP id 49A908FC08; Tue, 26 Oct 2010 21:56:47 +0000 (UTC) Received: from mdounin.ru (mdounin.cust.ramtel.ru [81.19.69.81]) by mdounin.cust.ramtel.ru (Postfix) with ESMTP id 6111D1702F; Wed, 27 Oct 2010 01:38:21 +0400 (MSD) Date: Wed, 27 Oct 2010 01:38:21 +0400 From: Maxim Dounin To: Randall Stewart Message-ID: <20101026213820.GK44164@mdounin.ru> References: <201010261912.o9QJCbdq063723@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201010261912.o9QJCbdq063723@svn.freebsd.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org Subject: Re: svn commit: r214397 - stable/8/sys/netinet X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 21:56:47 -0000 Hello! On Tue, Oct 26, 2010 at 07:12:37PM +0000, Randall Stewart wrote: > Author: rrs > Date: Tue Oct 26 19:12:37 2010 > New Revision: 214397 > URL: http://svn.freebsd.org/changeset/base/214397 > > Log: > MFC:210600 > > Fix the comment block that has the nice > table to really have the nice table :-) > > ============================================================================== > --- stable/8/sys/netinet/sctp_output.c Tue Oct 26 19:11:09 2010 (r214396) > +++ stable/8/sys/netinet/sctp_output.c Tue Oct 26 19:12:37 2010 (r214397) > @@ -2186,21 +2186,31 @@ sctp_is_ifa_addr_preferred(struct sctp_i > /* dest_is_priv is true if destination is a private address */ > /* dest_is_loop is true if destination is a loopback addresses */ > > - /* > + /** > * Here we determine if its a preferred address. A preferred address > * means it is the same scope or higher scope then the destination. > * L = loopback, P = private, G = global > - * ----------------------------------------- src | dest | result > - * ---------------------------------------- L | L | yes > - * ----------------------------------------- P | L | > - * yes-v4 no-v6 ----------------------------------------- G | > - * L | yes-v4 no-v6 ----------------------------------------- L > - * | P | no ----------------------------------------- P | > - * P | yes ----------------------------------------- G | > - * P | no ----------------------------------------- L | G > - * | no ----------------------------------------- P | G | > - * no ----------------------------------------- G | G | > - * yes ----------------------------------------- > + * ----------------------------------------- > + * src | dest | result > + * ---------------------------------------- Looks like it now has whitespace damage though (uses spaces as indentation). Maxim Dounin