diff options
author | Subha sree Mohankumar <smohanku@redhat.com> | 2017-09-22 19:34:12 +0530 |
---|---|---|
committer | Jeff Darcy <jeff@pl.atyp.us> | 2017-09-29 15:10:03 +0000 |
commit | 8154e044e1b920b10d632d8c1e6d36007927b267 (patch) | |
tree | 37928c7075690713982e1ca58fca2b7839dbb904 /glusterfsd | |
parent | 687908a364efcfb5ed69ff3dd0a8ef5b1551e88e (diff) |
glusterfsd: Coverity Issue "MISSING_BREAK" in parse_opts
Issue:Event unterminated_case: The case for value
"ARGP_LOCALTIME_LOGGING_KEY" is not terminated by a
'break' statement.
Solution: A break statement is added in the fallthrough case.
Change-Id: Ie44d1a291afaa0e9fb9ef2aa45368b9401a8bb82
BUG: 789278
Signed-off-by: Subha sree Mohankumar <smohanku@redhat.com>
Diffstat (limited to 'glusterfsd')
-rw-r--r-- | glusterfsd/src/glusterfsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c index fbbfca00d27..3f56cd0ce35 100644 --- a/glusterfsd/src/glusterfsd.c +++ b/glusterfsd/src/glusterfsd.c @@ -1290,7 +1290,7 @@ no_oom_api: case ARGP_LOCALTIME_LOGGING_KEY: cmd_args->localtime_logging = 1; - + break; case ARGP_PROCESS_NAME_KEY: cmd_args->process_name = gf_strdup (arg); break; |