diff options
author | Arun Raghavan <arun@arunraghavan.net> | 2016-05-11 09:20:07 +0530 |
---|---|---|
committer | Arun Raghavan <arun@arunraghavan.net> | 2016-05-11 09:20:26 +0530 |
commit | 14cf31fe45dad2b099a09bc4a6cd9866fff29198 (patch) | |
tree | 79861e3784775179279ef81c4f8924b90da6287d /src | |
parent | 408b9f8cc048fac657553aec615d6946563c3cef (diff) |
module-filter-apply: Fix stale m-d-m property name in comment
Signed-off-by: Arun Raghavan <arun@arunraghavan.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/module-filter-apply.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/module-filter-apply.c b/src/modules/module-filter-apply.c index 606ef0195..364d68be7 100644 --- a/src/modules/module-filter-apply.c +++ b/src/modules/module-filter-apply.c @@ -525,7 +525,7 @@ static pa_hook_result_t sink_input_move_finish_cb(pa_core *core, pa_sink_input * if (pa_proplist_gets(i->proplist, PA_PROP_FILTER_APPLY_MOVING)) return PA_HOOK_OK; - /* If we're managing m-d-m.ignore on this, remove and re-add if we're continuing to manage it */ + /* If we're managing m-d-m.auto_filtered on this, remove and re-add if we're continuing to manage it */ pa_hashmap_remove(u->mdm_ignored_inputs, i); return process(u, PA_OBJECT(i), true); @@ -602,7 +602,7 @@ static pa_hook_result_t source_output_move_finish_cb(pa_core *core, pa_source_ou if (pa_proplist_gets(o->proplist, PA_PROP_FILTER_APPLY_MOVING)) return PA_HOOK_OK; - /* If we're managing m-d-m.ignore on this, remove and re-add if we're continuing to manage it */ + /* If we're managing m-d-m.auto_filtered on this, remove and re-add if we're continuing to manage it */ pa_hashmap_remove(u->mdm_ignored_outputs, o); return process(u, PA_OBJECT(o), false); |