summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-08-21 22:26:36 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-08-21 22:26:36 +0200
commit205f5b5972d4fc5bb9d6d560ccf23eacca89bdc9 (patch)
tree759646c1c2276c30f6c533099facc4b712ea947a
parent93b34981fa6f82e49ffe90ba8b6f0fefbfba281e (diff)
downloadcurl-205f5b5972d4fc5bb9d6d560ccf23eacca89bdc9.tar.gz
x509asn1: use FALLTHROUGH
... as no other comments are accepted since 014ed7c22f51463
-rw-r--r--lib/x509asn1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/x509asn1.c b/lib/x509asn1.c
index 0ab077d50..72a0b4a00 100644
--- a/lib/x509asn1.c
+++ b/lib/x509asn1.c
@@ -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++;
}