From owner-freebsd-stable@FreeBSD.ORG Tue May 20 12:04:23 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16F57634 for ; Tue, 20 May 2014 12:04:23 +0000 (UTC) Received: from mail-ve0-x229.google.com (mail-ve0-x229.google.com [IPv6:2607:f8b0:400c:c01::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CE33E2DEF for ; Tue, 20 May 2014 12:04:22 +0000 (UTC) Received: by mail-ve0-f169.google.com with SMTP id jx11so451461veb.0 for ; Tue, 20 May 2014 05:04:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=ipmA40AFSq9hnUTVvR13P0N4L3n6dsXYXRwR6F6N1LA=; b=Is38Q/uCO45oeXHSBJPF22hAlfORKW2ixjz0nPTMjSlwyCzu9pCphJjS2hlwwveDNr P5JGnXFMTUlRvmf/ayuGeNyjFgtfobBomRFvXGUqjaYnIwD7+MwvcceVXdz93ZvWfUgH zlVh+aiaFA732CnE9Q05Fq22GF2HJhxAFjPzmTO9Z3D0CRGfd6y0qbJwnpFWcJ+Kpagx EKdQfNKstvc2On8A+pwFpp/d4Tq2NuZGrg1clTqZO8Mp6c9m+tjBqsnuxmnXJuNQbOva QFZjsTx6FX+oW+vJob76EgLPg4YDv2MURD1K6MBORjsw0PtGNKPSLMB7nxa2wPtWr0x8 H0Uw== MIME-Version: 1.0 X-Received: by 10.58.106.104 with SMTP id gt8mr457814veb.46.1400587461897; Tue, 20 May 2014 05:04:21 -0700 (PDT) Received: by 10.52.185.2 with HTTP; Tue, 20 May 2014 05:04:21 -0700 (PDT) Date: Tue, 20 May 2014 16:04:21 +0400 Message-ID: Subject: iconv exit code on 10.0 From: Pavel Timofeev To: freebsd-stable stable Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 May 2014 12:04:23 -0000 Hi! I've encountered with wrong iconv work. root@timbsd:~ # uname -a FreeBSD timbsd 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Tue May 13 18:31:10 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 root@timbsd:~ # locale LANG=3D LC_CTYPE=3Dru_RU.UTF-8 LC_COLLATE=3D"C" LC_TIME=3D"C" LC_NUMERIC=3D"C" LC_MONETARY=3D"C" LC_MESSAGES=3D"C" LC_ALL=3D I have file with russian content. root@timbsd:~ # cat /tmp/delete_it =D0=9A=D0=B0=D0=BA=D0=BE=D0=B9-=D1=82=D0=BE =D1=82=D0=B5=D0=BA=D1=81=D1=82 = =D0=BD=D0=B0 =D1=80=D1=83=D1=81=D1=81=D0=BA=D0=BE=D0=BC. Some text on russi= an =D0=95=D1=89=D0=B5 =D0=BD=D0=B5=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE. Some more. And I wanted to try to convert it to ISO. root@timbsd:~ # /usr/bin/iconv -t ISO-8859-15 /tmp/delete_it ?????-?? ????? ?? ???????. Some text on russian ??? ???????. Some more. iconv: warning: invalid characters: 31 root@timbsd:~ # echo $? 0 Why exit code is 0? Base iconv didn't manage to convert strings so exit code should be more than 0. That's really bad! converters/libiconv from ports works better in this case! See: root@timbsd:~ # /usr/local/bin/iconv -t ISO-8859-15 /tmp/delete_it /usr/local/bin/iconv: /tmp/delete_it:1:0: cannot convert root@timbsd:~ # echo $? 1 I tried it on FreeBSD 11-CURRENT and base iconv doesn't have such problem t= here. So I hope that suitable fixes will be MFCd to 10-STABLE.