From owner-svn-src-head@freebsd.org Fri Jul 24 17:58:45 2015 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 AF52B9AA6F5; Fri, 24 Jul 2015 17:58:45 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-wi0-x236.google.com (mail-wi0-x236.google.com [IPv6:2a00:1450:400c:c05::236]) (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 408B41B37; Fri, 24 Jul 2015 17:58:45 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by wibud3 with SMTP id ud3so74530844wib.1; Fri, 24 Jul 2015 10:58:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=H2A2BY7gMvTgukoeXDpP/x1gGZ3+VBLVy9IqXEPiUng=; b=paoGBqvSgs4u4OOS/eePS75FX2Pw4fTAZD0gXpjpB1eOzNKjDd7L/4e53iP1BJqdbW GGC3vZfYCifh0t0WaCErfXw5I77I6IC3SyuhcKPHolHcsAIhm85JbSKKfjyG1vOv2z00 FV/IgzmNzRR8Oph9lmO5ZHEAeGCx5EKWYbiL73l+IBHHYBox/+esGpWkJy8GccMRlj5O AZZ1yMsIzIpeL75FvXPkmPGpXPPTfv3yPsel7qac6Tk4QfAujnSif3l7Mz+/ozYlBHYk 72gVvOrHUiyEVgCITlxUrIfs+1JRzaGn6sW8JxSSUgpewi1iQTrBCSw+qnTS+vTkHSpT VuYQ== MIME-Version: 1.0 X-Received: by 10.180.105.36 with SMTP id gj4mr9549940wib.64.1437760723721; Fri, 24 Jul 2015 10:58:43 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.17.130 with HTTP; Fri, 24 Jul 2015 10:58:43 -0700 (PDT) In-Reply-To: <201507221958.t6MJwLEk015409@repo.freebsd.org> References: <201507221958.t6MJwLEk015409@repo.freebsd.org> Date: Fri, 24 Jul 2015 19:58:43 +0200 X-Google-Sender-Auth: YIwJCX28xkE_GQ7XVtCcU7-CPWQ Message-ID: Subject: Re: svn commit: r285803 - head/bin/ls From: Antoine Brodin To: Allan Jude Cc: src-committers@freebsd.org, 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.20 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: Fri, 24 Jul 2015 17:58:45 -0000 On Wed, Jul 22, 2015 at 9:58 PM, Allan Jude wrote: > Author: allanjude (doc committer) > Date: Wed Jul 22 19:58:21 2015 > New Revision: 285803 > URL: https://svnweb.freebsd.org/changeset/base/285803 > > Log: > Remove an excess space accidently introduced in the output in ls(1) by r285734 > > Spotted by: dim > Approved by: eadler (mentor) > Sponsored by: ScaleEngine Inc. > Differential Revision: https://reviews.freebsd.org/D3152 > > Modified: > head/bin/ls/print.c Hi, Some recent (less than 5 days old) changes on ls(1) broke it on i386, and more than 8000 ports are affected by this. See for instance http://beefy3.nyi.freebsd.org/data/head-i386-default/p392703_s285807/logs/errors/autoconf-2.69.log >From the log: %%% gmake[3]: Entering directory '/wrkdirs/usr/ports/devel/autoconf/work/autoconf-2.69/doc' Segmentation fault (core dumped) ../build-aux/mdate-sh: failed parsing 'ls -L -l -d -n /' output Updating ./version.texi %%% It used to build fine with r285732 and doesn't work anymore at r285807. Cheers, Antoine > > Modified: head/bin/ls/print.c > ============================================================================== > --- head/bin/ls/print.c Wed Jul 22 19:55:32 2015 (r285802) > +++ head/bin/ls/print.c Wed Jul 22 19:58:21 2015 (r285803) > @@ -456,7 +456,7 @@ printtime(const char *field, time_t ftim > snprintf(fmt, sizeof(fmt), "{d:%s/%%hs} ", field); > xo_attr("value", "%ld", (long) ftime); > xo_emit(fmt, longstring); > - snprintf(fmt, sizeof(fmt), "{en:%s/%%ld} ", field); > + snprintf(fmt, sizeof(fmt), "{en:%s/%%ld}", field); > xo_emit(fmt, (long) ftime); > } > >