From: Richard Mudgett Date: Thu, 7 Jan 2016 01:00:27 +0000 (-0600) Subject: ccss.c: Replace space in taskprocessor name. X-Git-Tag: 11.22.0-rc1~37^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fchanges%2F38%2F1938%2F1;p=thirdparty%2Fasterisk.git 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 --- diff --git a/main/ccss.c b/main/ccss.c index aeb902da55..8e800c5d70 100644 --- a/main/ccss.c +++ b/main/ccss.c @@ -4560,7 +4560,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())) {