From 995ad5dc4e696e782a724c44060252bb87d70766 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 31 Mar 2026 08:59:18 -0600 Subject: [PATCH] examples: fix run mode name in live example Ticket: #8439 --- examples/lib/live/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/lib/live/main.c b/examples/lib/live/main.c index ff509f40ef..272186d3f5 100644 --- a/examples/lib/live/main.c +++ b/examples/lib/live/main.c @@ -284,10 +284,10 @@ int main(int argc, char **argv) /* Register our own library run mode. At this time, the ThreadVars * for each capture thread need to be created in the provided * callback to meet thread synchronization requirements. */ - RunModeRegisterNewRunMode( - RUNMODE_LIB, "live", "Live capture application run mode", AppRunModeSetup, NULL); + RunModeRegisterNewRunMode(RUNMODE_LIB, "live-example", "Live capture application run mode", + AppRunModeSetup, NULL); - if (!SCConfSetFromString("runmode=live", 1)) { + if (!SCConfSetFromString("runmode=live-example", 1)) { exit(EXIT_FAILURE); }