From owner-freebsd-bugs@FreeBSD.ORG Mon May 5 01:00:37 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45BC337B401 for ; Mon, 5 May 2003 01:00:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E332B43FB1 for ; Mon, 5 May 2003 01:00:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4580aUp004004 for ; Mon, 5 May 2003 01:00:36 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4580a3M004003; Mon, 5 May 2003 01:00:36 -0700 (PDT) Date: Mon, 5 May 2003 01:00:36 -0700 (PDT) Message-Id: <200305050800.h4580a3M004003@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Vasil Dimov Subject: Re: bin/51750: ipfw2.c typos X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Vasil Dimov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 08:00:37 -0000 The following reply was made to PR bin/51750; it has been noted by GNATS. From: Vasil Dimov To: bug-followup@freebsd.org Cc: Subject: Re: bin/51750: ipfw2.c typos Date: Mon, 5 May 2003 10:55:36 +0300 --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ipfw2.c.patch" --- ipfw2.c.orig Sat Mar 15 03:12:59 2003 +++ ipfw2.c Sun May 4 18:12:44 2003 @@ -2782,7 +2782,7 @@ cmd = next_cmd(cmd); } } else if (first_cmd != cmd) { - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); } else goto read_options; OR_BLOCK(get_proto); @@ -3115,7 +3115,7 @@ proto = cmd->arg1; ac--; av++; } else - errx(EX_DATAERR, "invalid protocol ``%s''", av); + errx(EX_DATAERR, "invalid protocol ``%s''", *av); break; case TOK_SRCIP: @@ -3162,7 +3162,7 @@ case TOK_MACTYPE: NEED1("missing mac type"); if (!add_mactype(cmd, ac, *av)) - errx(EX_DATAERR, "invalid mac type %s", av); + errx(EX_DATAERR, "invalid mac type %s", *av); ac--; av++; break; --SLDf9lqlvOQaIe6s--