From owner-svn-src-head@freebsd.org Thu May 18 09:45:48 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 481E2D72B45; Thu, 18 May 2017 09:45:48 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BE7615FA; Thu, 18 May 2017 09:45:47 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id v4I9jkLk065430; Thu, 18 May 2017 02:45:46 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id v4I9jkTP065429; Thu, 18 May 2017 02:45:46 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201705180945.v4I9jkTP065429@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r318400 - head/sbin/ipfw In-Reply-To: <72e5d765-dfd5-dd65-b8f1-9d5524cde366@yandex.ru> To: "Andrey V. Elsukov" Date: Thu, 18 May 2017 02:45:46 -0700 (PDT) CC: rgrimes@freebsd.org, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Thu, 18 May 2017 09:45:48 -0000 -- Start of PGP signed section. [ Charset UTF-8 unsupported, converting... ] > On 18.05.2017 03:49, Rodney W. Grimes wrote: > > [ Charset UTF-8 unsupported, converting... ] > >> Author: ae > >> Date: Wed May 17 10:56:22 2017 > >> New Revision: 318400 > >> URL: https://svnweb.freebsd.org/changeset/base/318400 > >> > >> Log: > >> Allow zero port specification in table entries with type flow. > >> > >> PR: 217620 > >> MFC after: 1 week > >> > >> Modified: > >> head/sbin/ipfw/tables.c > >> > >> Modified: head/sbin/ipfw/tables.c > >> ============================================================================== > >> --- head/sbin/ipfw/tables.c Wed May 17 09:04:09 2017 (r318399) > >> +++ head/sbin/ipfw/tables.c Wed May 17 10:56:22 2017 (r318400) > >> @@ -1260,16 +1260,14 @@ tentry_fill_key_type(char *arg, ipfw_obj > >> if ((p = strchr(arg, ',')) != NULL) > >> *p++ = '\0'; > >> > >> - if ((port = htons(strtol(arg, NULL, 10))) == 0) { > >> + port = htons(strtol(arg, &pp, 10)); > > ^^^ > > Can this be converted to a sizeof(foo) somehow? > > Constants like this are typically bad style and lead to bugs. > > This means that decimal number is expected in the string. > Not sure what bugs this can lead to. Ignore me, my brain was reading strtok as strncpy and expecting the third argument to be length limit. -- Rod Grimes rgrimes@freebsd.org