summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2016-01-06 19:00:27 -0600
committerRichard Mudgett <rmudgett@digium.com>2016-01-08 20:12:34 -0600
commit0fc32c4dd37d4ee3e0807047acad5218ecdc8f67 (patch)
treec6aee5d6b45a514f70026601a48b2450195a5c63
parent0f79c8839b08f4c8d0d7c0aca2e1a3573b148bca (diff)
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
-rw-r--r--main/ccss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/ccss.c b/main/ccss.c
index 0605810c5..f39eed970 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())) {