From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 15 13:40:09 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D2A416A400 for ; Fri, 15 Jun 2007 13:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 641D713C45A for ; Fri, 15 Jun 2007 13:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5FDe9on008785 for ; Fri, 15 Jun 2007 13:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5FDe9a8008782; Fri, 15 Jun 2007 13:40:09 GMT (envelope-from gnats) Date: Fri, 15 Jun 2007 13:40:09 GMT Message-Id: <200706151340.l5FDe9a8008782@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dan Lukes Cc: Subject: Re: bin/71659: [PATCH] cleanup of the usr.sbin/mount_portalfs code X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Lukes List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 13:40:09 -0000 The following reply was made to PR bin/71659; it has been noted by GNATS. From: Dan Lukes To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/71659: [PATCH] cleanup of the usr.sbin/mount_portalfs code Date: Fri, 15 Jun 2007 14:56:10 +0200 After years, I reconsidered things. struct in_addr **ipp = ipp; ... is not nice trick but dirty gcc-centric hack instead. struct in_addr **ipp = NULL; seems to be better construct ... The final decision is committer's sovereignty. Dan