From 1fb39aa8a06889915e0398dcb32435424b19d71e Mon Sep 17 00:00:00 2001 From: Richard Mudgett <rmudgett@digium.com> Date: Wed, 6 Jan 2016 19:00:27 -0600 Subject: [PATCH] ccss.c: Replace space in taskprocessor name. The CLI "core ping taskprocessor" command does not work very well with taskprocessor names that have spaces in them. You have to put quotes around the name so using tab completion becomes awkward. Change-Id: I29e806dd0a8a0256f4e2e0a7ab88c9e19ab0eda0 --- main/ccss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ccss.c b/main/ccss.c index 51edae745b..307f71b96a 100644 --- a/main/ccss.c +++ b/main/ccss.c @@ -4663,7 +4663,7 @@ int ast_cc_init(void) "Create generic monitor container"))) { return -1; } - if (!(cc_core_taskprocessor = ast_taskprocessor_get("CCSS core", TPS_REF_DEFAULT))) { + if (!(cc_core_taskprocessor = ast_taskprocessor_get("CCSS_core", TPS_REF_DEFAULT))) { return -1; } if (!(cc_sched_context = ast_sched_context_create())) { -- GitLab