Unverified Commit 205f5b59 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

x509asn1: use FALLTHROUGH

... as no other comments are accepted since 014ed7c2
parent 93b34981
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -302,10 +302,10 @@ utf8asn1str(char **to, int type, const char *from, const char *end)
      case 4:
        wc = (wc << 8) | *(const unsigned char *) from++;
        wc = (wc << 8) | *(const unsigned char *) from++;
        /* fallthrough */
        /* FALLTHROUGH */
      case 2:
        wc = (wc << 8) | *(const unsigned char *) from++;
        /* fallthrough */
        /* FALLTHROUGH */
      default: /* case 1: */
        wc = (wc << 8) | *(const unsigned char *) from++;
      }