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: swild...@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; _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"