Date: Sun, 21 Jan 2018 21:09:08 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r328222 - head/lib/libiconv_modules/ISO2022 Message-ID: <201801212109.w0LL98OU040870@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801212109.w0LL98OU040870>