From owner-svn-src-all@FreeBSD.ORG Thu May 7 21:30:30 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2FFF6828; Thu, 7 May 2015 21:30:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 1EFCD106E; Thu, 7 May 2015 21:30:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t47LUT97082181; Thu, 7 May 2015 21:30:29 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t47LUT9M082180; Thu, 7 May 2015 21:30:29 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201505072130.t47LUT9M082180@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 May 2015 21:30:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282609 - head/usr.bin/checknr X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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, 07 May 2015 21:30:30 -0000 Author: bapt Date: Thu May 7 21:30:29 2015 New Revision: 282609 URL: https://svnweb.freebsd.org/changeset/base/282609 Log: Reduce the size to 64 for the commands, 512 was way too large for the purpose Noticed by: julian Modified: head/usr.bin/checknr/checknr.c Modified: head/usr.bin/checknr/checknr.c ============================================================================== --- head/usr.bin/checknr/checknr.c Thu May 7 20:54:38 2015 (r282608) +++ head/usr.bin/checknr/checknr.c Thu May 7 21:30:29 2015 (r282609) @@ -313,7 +313,7 @@ static void process(FILE *f) { int i, n; - char mac[512]; /* The current macro or nroff command */ + char mac[64]; /* The current macro or nroff command */ char *line; size_t linecap; int pl;