From owner-svn-src-head@freebsd.org Thu Jun 21 05:36:34 2018 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 D65FA10070B8 for ; Thu, 21 Jun 2018 05:36:34 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-yb0-x234.google.com (mail-yb0-x234.google.com [IPv6:2607:f8b0:4002:c09::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7DE868AACF for ; Thu, 21 Jun 2018 05:36:34 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mail-yb0-x234.google.com with SMTP id e84-v6so756671ybb.0 for ; Wed, 20 Jun 2018 22:36:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=mnfYCWFPr/iUpTLu2o0PqcdXSoiF5+srKsapDGijv4k=; b=JLA7fuWSWWLx9Tx8yclNrBhj0/oXVs7g/PsXgunOiMi6YEg535LY6gcjlHQoBzxxHT ZyBGVqWsHnb1Jr8txhNx0H4S94Ge44InshfGnnLj+4rrBKrI8GEt1C5WEWwZVl8GuCOH JOy3LV/TsU79Wgu5UpBXJCjxfZ+3BTR66WNAw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=mnfYCWFPr/iUpTLu2o0PqcdXSoiF5+srKsapDGijv4k=; b=GY1MYLOP9rzCeqRDaBCL3OCDbW3tjHQsjvLah1X1csI1sZQ6g3/Ubcdr2oCMbhPmbD CUWDJAhepCDiuiDkfuZT1ZyYfs1xtQitRB665bjzxCe2xVQ3lDCi/Gxdi8LI3ocofMgb PJJm52kb3qRKe2Spaij4mnIjFsz53M3UWPzNpY4bsv4uigkPvwxo1LMW3E92ETEVoIgf p1RZFkNmacTBDLcDRRr8UeqyI3FWXwDXXKpb+FRkvOvVWhUyaGYuSr26g6YWyofCXVPu HdbJMQD1uskFMHTxR/ggoicorT6kChdix5ECosLnYR/gLYk7g7c6U/49gZwDjx2zEmLZ rCdA== X-Gm-Message-State: APt69E2k5XmS0N9lZ9uXMGQ8ZLsOp2j8VcnwNYxo0nEKmjQMSGRiT2Rd f4Aavih6MxZ2Cnkd/PljN1xMfphSw0+tqmTcbdnlQQ== X-Google-Smtp-Source: ADUXVKJNrROZw/4acg7BsXOuVGZLKN91185oS+2PlT5B1Zq8V0sp7oUIfHMlayCqF5YRS0ntcNaSDrDbJb/gGlqSuOk= X-Received: by 2002:a5b:64c:: with SMTP id o12-v6mr11556727ybq.460.1529559393572; Wed, 20 Jun 2018 22:36:33 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a25:ef50:0:0:0:0:0 with HTTP; Wed, 20 Jun 2018 22:36:02 -0700 (PDT) In-Reply-To: References: <201806200108.w5K18sIR050132@repo.freebsd.org> From: Eitan Adler Date: Wed, 20 Jun 2018 22:36:02 -0700 Message-ID: Subject: Re: svn commit: r335402 - head/sbin/veriexecctl To: "Stephen J. Kiernan" Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 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, 21 Jun 2018 05:36:35 -0000 On 19 June 2018 at 20:08, Eitan Adler wrote: > On 19 June 2018 at 18:08, Stephen J. Kiernan wrote: >> Added: head/sbin/veriexecctl/Makefile >> ============================================================================== >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/sbin/veriexecctl/Makefile Wed Jun 20 01:08:54 2018 (r335402) >> @@ -0,0 +1,11 @@ >> +# $FreeBSD$ >> + >> +PROG= veriexecctl >> +MAN= veriexecctl.8 >> +SRCS= veriexecctl_parse.y veriexecctl_conf.l veriexecctl.c >> + >> +WARNS?= 3 > > Why are we introducing new code with lower-than-6 warnings ? In all the commotion about the more important issues this fell through. Also its argument parsing appears to not be using getopt[_long] ? -- Eitan Adler