]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
getparameter: comment a switch FALLTHROUGH
authorDaniel Stenberg <daniel@haxx.se>
Sat, 4 Oct 2014 14:12:06 +0000 (16:12 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 4 Oct 2014 14:15:47 +0000 (16:15 +0200)
Coverity CID 1061118. Point out that it is on purpose.

src/tool_getparam.c

index 180878baba7bbeed5135c27e22fa1d5a6afdbb8d..cb5e234546f04f8ae17c524925be52fe1fbc1d8e 100644 (file)
@@ -1762,6 +1762,7 @@ ParameterError getparameter(char *flag,    /* f or -long-flag */
       switch(*nextarg) {
       case '+':
         nextarg++;
+        /* FALLTHROUGH */
       default:
         /* If-Modified-Since: (section 14.28 in RFC2068) */
         config->timecond = CURL_TIMECOND_IFMODSINCE;