Files
heimdal/lib/hx509
Jeffrey Altman 04527412e3 Follow the Linux kernel's lead on "fallthrough"
The pseudo keyword 'fallthrough' is defined such that case statement
blocks must end with any of these keywords:
 * break;
 * fallthrough;
 * continue;
 * goto <label>;
 * return [expression];
 *
 *  gcc: https://gcc.gnu.org/onlinedocs/gcc/Statement-Attributes.html#Statement-Attributes

The macro is defined either as

  __attribute__((__fallthrough__))

or as

  do {} while (0)  /* fallthrough */

not including the semicolon.

This change implements the Linux kernel style and updates several locations
where "/*fallthrough*/ and /* FALLTHROUGH */ were not previously replaced.

Externally imported code such as libedit, libtommath and sqlite are
restored to their unaltered state.

Change-Id: I69db8167b0d5884f55d96d72de3059a0235a1ba3
2022-01-21 10:39:47 -05:00
..
2015-12-09 10:59:08 +11:00
2022-01-17 17:36:48 -06:00
2008-09-13 08:53:55 +00:00
2011-05-21 11:57:31 -07:00
2022-01-17 17:36:48 -06:00
2022-01-16 00:48:09 -05:00
2014-04-25 02:42:17 +02:00
2021-08-10 15:30:45 +10:00
2022-01-17 17:36:48 -06:00
2022-01-14 12:42:52 -06:00
2019-10-03 13:09:18 -05:00
2022-01-14 12:42:52 -06:00
2019-10-03 13:09:18 -05:00
2019-10-03 13:09:18 -05:00
2021-12-18 11:34:12 +11:00
2019-12-09 18:10:10 -06:00
2022-01-14 12:44:00 -06:00
2022-01-14 12:42:52 -06:00
2022-01-17 17:36:48 -06:00
2017-05-26 23:24:30 -04:00
2017-05-26 23:24:30 -04:00
2022-01-14 12:42:52 -06:00
2011-10-31 21:27:51 -07:00
2014-03-12 21:18:03 -04:00
2014-03-12 21:18:03 -04:00
2011-05-21 11:57:31 -07:00
2011-05-07 17:22:24 -07:00
2009-09-21 19:15:00 -07:00
2010-09-30 18:36:58 -07:00
2009-03-26 23:12:02 +00:00
2009-03-26 23:11:48 +00:00
2007-05-30 23:19:01 +00:00