From faf09bcfc465cdf7a5892339ee36b2dcef85b227 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 23 Feb 2012 11:06:29 -0500 Subject: [PATCH] fix: add missing break in command handling fix missing break in switch statement introduced in commit 2e09ba096b399ff18769cdd794c3946e54194491 Signed-off-by: Mathieu Desnoyers Signed-off-by: David Goulet --- src/bin/lttng-sessiond/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/lttng-sessiond/main.c b/src/bin/lttng-sessiond/main.c index 1e15d86c4..a8156cf12 100644 --- a/src/bin/lttng-sessiond/main.c +++ b/src/bin/lttng-sessiond/main.c @@ -3138,6 +3138,7 @@ static int process_client_msg(struct command_ctx *cmd_ctx) case LTTNG_START_TRACE: case LTTNG_STOP_TRACE: need_domain = 0; + break; default: need_domain = 1; } -- 2.34.1