From owner-svn-src-all@FreeBSD.ORG Wed Jun 17 05:25:01 2015 Return-Path: Delivered-To: svn-src-all@hub.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 29AE6F2E for ; Wed, 17 Jun 2015 05:25:01 +0000 (UTC) (envelope-from mailing-machine@vniz.net) Received: from mail-la0-f43.google.com (mail-la0-f43.google.com [209.85.215.43]) (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 B3B531B4 for ; Wed, 17 Jun 2015 05:25:00 +0000 (UTC) (envelope-from mailing-machine@vniz.net) Received: by labbc20 with SMTP id bc20so24852762lab.1 for ; Tue, 16 Jun 2015 22:24:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=yUNn1OR/qipkVkcuo6U1xLK1cJ/OEVCxlnRq4GaaP/0=; b=NSD2RaZ7GvJIBDPPQ03hQ8hh9NIKzMPKEcahCcIFlb4FRK+f9MK9e+fFbsFVBxmgS+ DhlXkGA1MeD0gWi0ZpOzWDYMC5RjU08F1BWOtfdTiOb41dB1xii0NN9YAOlYZ6BS+T2o gj4vvuODdxEIa8JkHLHgG4YZhrIg1qs4hyzm+bGAGIxSjz/k9/0cXzWto4nDeO+SYVHE JBLur607xtAi4slSA0bAB0oM3CXDxW4LiSWpfd3lDp0ggxeyc7n7isM9IFmuJbQXnOXO kSQcZ102lxeJJi2fNFjw3ReNy8KW+pxvazSzJkyuJ/igiG5HtAJNBUfOTLzftH7WlZQq pWeg== X-Gm-Message-State: ALoCoQnKeUeqWJ4koonKN7qIMeRtttrZ6AcOGqBcTPvJQ4dXkHLGw+e0iIj8XWVxhTKhh5NChnzv X-Received: by 10.152.198.166 with SMTP id jd6mr5901751lac.26.1434518698631; Tue, 16 Jun 2015 22:24:58 -0700 (PDT) Received: from [192.168.1.2] ([89.169.173.68]) by mx.google.com with ESMTPSA id kv1sm712339lbb.48.2015.06.16.22.24.57 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 16 Jun 2015 22:24:57 -0700 (PDT) Subject: Re: svn commit: r284494 - head/bin/ls To: Alexander Kabaev , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201506170426.t5H4QngV023706@svn.freebsd.org> From: Andrey Chernov Message-ID: <558104A7.20708@freebsd.org> Date: Wed, 17 Jun 2015 08:24:55 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <201506170426.t5H4QngV023706@svn.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit 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: Wed, 17 Jun 2015 05:25:01 -0000 On 17.06.2015 7:26, Alexander Kabaev wrote: > Author: kan > Date: Wed Jun 17 04:26:48 2015 > New Revision: 284494 > URL: https://svnweb.freebsd.org/changeset/base/284494 > > Log: > Continue ubreaking ``env LANG=ru_RU.KOI8-R ls -l''. > > File names are in current locale as well. Thanx, fixed now. > > Modified: > head/bin/ls/print.c > > Modified: head/bin/ls/print.c > ============================================================================== > --- head/bin/ls/print.c Wed Jun 17 04:18:30 2015 (r284493) > +++ head/bin/ls/print.c Wed Jun 17 04:26:48 2015 (r284494) > @@ -178,7 +178,7 @@ printlong(const DISPLAY *dp) > sp = p->fts_statp; > name = getname(p->fts_name); > if (name) > - xo_emit("{ke:name}", name); > + xo_emit("{ke:name/%hs}", name); > if (f_inode) > xo_emit("{:inode/%*ju} ", > dp->s_inode, (uintmax_t)sp->st_ino); > @@ -214,7 +214,7 @@ printlong(const DISPLAY *dp) > #endif > > if (name) { > - xo_emit("{dk:name}", name); > + xo_emit("{dk:name/%hs}", name); > free(name); > } > > -- http://ache.vniz.net/