From owner-svn-src-head@freebsd.org Sun Jan 21 21:09:09 2018 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 9F8E4EBB4F2; Sun, 21 Jan 2018 21:09:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 744D67C4EC; Sun, 21 Jan 2018 21:09:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ADB8310E91; Sun, 21 Jan 2018 21:09:08 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0LL98Zw040871; Sun, 21 Jan 2018 21:09:08 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0LL98OU040870; Sun, 21 Jan 2018 21:09:08 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201801212109.w0LL98OU040870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Sun, 21 Jan 2018 21:09:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r328222 - head/lib/libiconv_modules/ISO2022 X-SVN-Group: head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: head/lib/libiconv_modules/ISO2022 X-SVN-Commit-Revision: 328222 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 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: Sun, 21 Jan 2018 21:09:09 -0000 Author: eadler Date: Sun Jan 21 21:09:08 2018 New Revision: 328222 URL: https://svnweb.freebsd.org/changeset/base/328222 Log: iconv: adding missing break break is probably intended and correct, but has no correctness implications due to is94 => is96 Reviewed by: cem, jilles Reported by: swildner@DragonFlyBSD.org MFC After: 1 week Modified: head/lib/libiconv_modules/ISO2022/citrus_iso2022.c Modified: head/lib/libiconv_modules/ISO2022/citrus_iso2022.c ============================================================================== --- head/lib/libiconv_modules/ISO2022/citrus_iso2022.c Sun Jan 21 20:27:47 2018 (r328221) +++ head/lib/libiconv_modules/ISO2022/citrus_iso2022.c Sun Jan 21 21:09:08 2018 (r328222) @@ -776,6 +776,7 @@ asis: case CS94: if (!(is94(string[0] & 0x7f))) goto asis; + break; case CS96: if (!(is96(string[0] & 0x7f))) goto asis;