fix: add missing break in command handling
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 23 Feb 2012 16:06:29 +0000 (11:06 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 23 Feb 2012 16:06:29 +0000 (11:06 -0500)
fix missing break in switch statement introduced in commit
2e09ba096b399ff18769cdd794c3946e54194491

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
src/bin/lttng-sessiond/main.c

index d78b0956398be291f9e93aa7c42c17405619fa80..dfe608cba27e29259ff29ca953edf8e6596d5cf6 100644 (file)
@@ -3147,6 +3147,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;
        }
This page took 0.027808 seconds and 5 git commands to generate.