diff --git a/maestro/pool_manager_registry.c b/maestro/pool_manager_registry.c index bda4204003eeeeedaeb3976072700327dc49d180..af22504a0e1f9541b2bc38052a4c92df542f8685 100644 --- a/maestro/pool_manager_registry.c +++ b/maestro/pool_manager_registry.c @@ -1133,7 +1133,7 @@ mstro_pm_cdo_app_match(mstro_app_id origin, const struct mstro_cdo_id *id, /* str, origin, cdo_selector, cdo_selector->query); */ /* }); */ mstro_status status = MSTRO_FAIL; - /* now fetcch attributes from per-app-CDO entry, call subscription-module checker and return result */ + /* now fetch attributes from per-app-CDO entry, call subscription-module checker and return result */ WITH_LOCKED_CDO_REGISTRY({ struct per_app_cdo_entry *entry; status = mstro_pm_cdo_app_lookup(id, origin, &entry); diff --git a/maestro/subscription_registry.c b/maestro/subscription_registry.c index db4402a3d2912abf35f85155a9dc6fa8e5b594da..0574d50a854624f85ce72da73671c06e1ee99cf6 100644 --- a/maestro/subscription_registry.c +++ b/maestro/subscription_registry.c @@ -1487,18 +1487,18 @@ mstro_subscription__csq_eval(const struct mstro_csq_val *csq, entry = mstro_subscription__pool_attr_find(attributes->kv_map, key); if(entry==NULL) { if(complement) { - DEBUG("has-not matched for |%s|\n", key); + DEBUG("HAS-NOT matched for |%s|\n", key); return MSTRO_OK; } else { - DEBUG("has did not match for |%s|\n", key); + DEBUG("HAS did not match for |%s|\n", key); return MSTRO_NOMATCH; } } else { if(complement) { - DEBUG("has-not did not match for |%s|\n", key); + DEBUG("HAS-NOT did not match for |%s|\n", key); return MSTRO_NOMATCH; } else { - DEBUG("has matched for |%s|\n", key); + DEBUG("HAS matched for |%s|\n", key); return MSTRO_OK; } }