From 8154e044e1b920b10d632d8c1e6d36007927b267 Mon Sep 17 00:00:00 2001 From: Subha sree Mohankumar Date: Fri, 22 Sep 2017 19:34:12 +0530 Subject: 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 --- glusterfsd/src/glusterfsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glusterfsd') 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; -- cgit