summaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-02-28 22:45:28 +0100
committerJay Satiro <raysatiro@yahoo.com>2017-03-03 03:09:46 -0500
commitcbff751e9597b66a50b23491569865fe39682031 (patch)
tree2c0e41a225f8bc2bfa341a6ee5607fcc1dea2d41 /lib/ftp.c
parent6fc91f6d3af1d9976cdba8e6d757d56b1c8d3b54 (diff)
downloadcurl-cbff751e9597b66a50b23491569865fe39682031.tar.gz
build: fix gcc7 implicit fallthrough warnings
Mark intended fallthroughs with /* FALLTHROUGH */ so that gcc will know it's expected and won't warn on [-Wimplicit-fallthrough=]. Closes https://github.com/curl/curl/pull/1297
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 867c97994..a1546a135 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -3214,6 +3214,7 @@ static CURLcode ftp_done(struct connectdata *conn, CURLcode status,
/* until we cope better with prematurely ended requests, let them
* fallback as if in complete failure */
+ /* FALLTHROUGH */
default: /* by default, an error means the control connection is
wedged and should not be used anymore */
ftpc->ctl_valid = FALSE;