diff options
author | Nigel Babu <nigelb@redhat.com> | 2017-02-20 08:27:51 +0530 |
---|---|---|
committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2017-02-26 11:29:26 -0500 |
commit | 688abcc90745515f7e143ef8cf1e938239db597c (patch) | |
tree | 829941bd832eaf851af0cc2f2c39806c7886d56e /xlators/protocol | |
parent | dc15855cea679affd78d28fd94cbea0c108997f0 (diff) | |
download | glusterfs-688abcc90745515f7e143ef8cf1e938239db597c.tar.gz glusterfs-688abcc90745515f7e143ef8cf1e938239db597c.tar.xz glusterfs-688abcc90745515f7e143ef8cf1e938239db597c.zip |
libglusterfs, gfdb, glusterfs: Add missing breaks
A few switches did not have breaks causing fall throughs. Most of them
have been fixed with fall through comments for those that are
intentional.
Change-Id: I84c85726b542f38504b50fefab5eba5dbcd27a07
BUG: 1424894
Signed-off-by: Nigel Babu <nigelb@redhat.com>
Reviewed-on: https://review.gluster.org/16677
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Diffstat (limited to 'xlators/protocol')
-rw-r--r-- | xlators/protocol/client/src/client-helpers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/protocol/client/src/client-helpers.c b/xlators/protocol/client/src/client-helpers.c index 425c73fb1a..f9d5c2c8b1 100644 --- a/xlators/protocol/client/src/client-helpers.c +++ b/xlators/protocol/client/src/client-helpers.c @@ -1437,6 +1437,7 @@ client_handle_fop_requirements (xlator_t *this, call_frame_t *frame, &this_req->compound_req_u.compound_lease_req, op_errno, out, &args->loc, &args->lease, args->xdata); + break; default: return ENOTSUP; } |