summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2017-07-19 16:37:56 -0400
committerSteve Dickson <steved@redhat.com>2017-07-26 11:30:28 -0400
commit6b8ee0f663c44452a7568a0f2ffb038ee7ae0972 (patch)
treee8f96cfe7386375061e6434814b59b83e8c6470e
parent2aa29fa3aa93507228192eb1954c6638463aac69 (diff)
downloadnfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.tar.gz
nfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.tar.xz
nfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.zip
nfsmount: remove a warning
nfsmount.c:684:8: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--utils/mount/nfsmount.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/mount/nfsmount.c b/utils/mount/nfsmount.c
index 930622d..ae4a3da 100644
--- a/utils/mount/nfsmount.c
+++ b/utils/mount/nfsmount.c
@@ -683,6 +683,7 @@ nfsmount(const char *spec, const char *node, int flags,
case RPC_SYSTEMERROR:
if (errno == ETIMEDOUT)
break;
+ /* FALLTHRU */
default:
rpc_mount_errors(*nfs_server.hostname, 0, bg);
goto fail;