From owner-svn-src-all@freebsd.org Thu Aug 16 20:58:51 2018 Return-Path: Delivered-To: svn-src-all@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 59F6B1076B4B for ; Thu, 16 Aug 2018 20:58:51 +0000 (UTC) (envelope-from joerg@bec.de) Received: from relay1-d.mail.gandi.net (relay1-d.mail.gandi.net [217.70.183.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE713795BC for ; Thu, 16 Aug 2018 20:58:50 +0000 (UTC) (envelope-from joerg@bec.de) X-Originating-IP: 93.205.160.47 Received: from britannica.bec.de (p5DCDA02F.dip0.t-ipconnect.de [93.205.160.47]) (Authenticated sender: joerg@bec.de) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id B79D8240005 for ; Thu, 16 Aug 2018 20:58:42 +0000 (UTC) Date: Thu, 16 Aug 2018 22:58:41 +0200 From: Joerg Sonnenberger To: svn-src-all@freebsd.org Subject: Re: svn commit: r337921 - head/lib/libbe Message-ID: <20180816205840.GA20821@britannica.bec.de> References: <201808161837.w7GIbmLi044921@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201808161837.w7GIbmLi044921@repo.freebsd.org> User-Agent: Mutt/1.9.5 (2018-04-13) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2018 20:58:51 -0000 On Thu, Aug 16, 2018 at 06:37:48PM +0000, Kyle Evans wrote: > Author: kevans > Date: Thu Aug 16 18:37:47 2018 > New Revision: 337921 > URL: https://svnweb.freebsd.org/changeset/base/337921 > > Log: > libbe(3): Prefer safer versions of strcat/strcpy Why not use snprintf in both cases? Joerg