summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2017-07-19 16:40:37 -0400
committerSteve Dickson <steved@redhat.com>2017-07-26 11:30:28 -0400
commit69c56ab39ab88fb6ece79475eac99029b17ae170 (patch)
tree95b44e2d2b1d6303b850542f6a73a018fb665faf
parent6b8ee0f663c44452a7568a0f2ffb038ee7ae0972 (diff)
downloadnfs-utils-69c56ab39ab88fb6ece79475eac99029b17ae170.tar.gz
nfs4mount: removed a warning
nfs4mount.c:445:8: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--utils/mount/nfs4mount.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/mount/nfs4mount.c b/utils/mount/nfs4mount.c
index 028e7cd..89629ed 100644
--- a/utils/mount/nfs4mount.c
+++ b/utils/mount/nfs4mount.c
@@ -444,6 +444,7 @@ int nfs4mount(const char *spec, const char *node, int flags,
case RPC_SYSTEMERROR:
if (errno == ETIMEDOUT)
break;
+ /* FALLTHRU */
default:
rpc_mount_errors(hostname, 0, bg);
goto fail;