From owner-svn-src-head@freebsd.org Mon Apr 22 14:55:35 2019 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2174A159C249; Mon, 22 Apr 2019 14:55:35 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail105.syd.optusnet.com.au (mail105.syd.optusnet.com.au [211.29.132.249]) by mx1.freebsd.org (Postfix) with ESMTP id 996C48E8C3; Mon, 22 Apr 2019 14:55:34 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from [192.168.0.102] (c110-21-101-228.carlnfd1.nsw.optusnet.com.au [110.21.101.228]) by mail105.syd.optusnet.com.au (Postfix) with ESMTPS id 04005C86C; Tue, 23 Apr 2019 00:55:22 +1000 (AEST) Date: Tue, 23 Apr 2019 00:55:21 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: "Bjoern A. Zeeb" cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r346554 - head/sys/netinet In-Reply-To: <7A9D3668-2949-45CF-B5A2-968F633FE285@FreeBSD.org> Message-ID: <20190423004413.E2402@besplex.bde.org> References: <201904221420.x3MEKn34037421@repo.freebsd.org> <7A9D3668-2949-45CF-B5A2-968F633FE285@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.2 cv=FNpr/6gs c=1 sm=1 tr=0 cx=a_idp_d a=PalzARQSbocsUSjMRkwAPg==:117 a=PalzARQSbocsUSjMRkwAPg==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=kj9zAlcOel0A:10 a=8EedbDgTokVb82HiRtgA:9 a=CjuIK1q_8ugA:10 X-Rspamd-Queue-Id: 996C48E8C3 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.991,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Apr 2019 14:55:35 -0000 On Mon, 22 Apr 2019, Bjoern A. Zeeb wrote: > On 22 Apr 2019, at 14:20, Bjoern A. Zeeb wrote: >> Log: >> Remove some excessive brackets. >> >> No functional change. > > But it includes a stye bug; sorry; I had re-indented the lines to validate > the change. Ill remedy this with the follow-up commit which will split > that block up anyway. Also, it removes excessive parentheses, not excessive brackets. I think excessive brackets are just syntax errors. E.g., a[[i]]. Excessive braces are not syntax errors, but I've never more than single excessive ones. E.g., if (foo != 0) { bar(); } is a common style bug, but if (foo != 0) {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ bar(); }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} s unusual. Bruce