This avoids three build warnings when preprocessing happens before compiling
with gcc >= 7.
case SMP_T_METH:
if (smp->data.u.meth.meth != HTTP_METH_OTHER)
return 1;
- /* Fall through */
+ __fallthrough;
case SMP_T_STR:
if (!smp->data.u.str.size || smp->data.u.str.data >= smp->data.u.str.size)
case SMP_T_METH:
if (smp->data.u.meth.meth != HTTP_METH_OTHER)
return 1;
- /* Fall through */
+ __fallthrough;
case SMP_T_STR:
if (!smp->data.u.str.size ||
case SMP_T_METH:
if (smp->data.u.meth.meth != HTTP_METH_OTHER)
break;
- /* Fall through */
+ __fallthrough;
case SMP_T_STR:
trash = get_trash_chunk();