summaryrefslogtreecommitdiff
path: root/filters.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters.cpp')
-rw-r--r--filters.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/filters.cpp b/filters.cpp
index 64c2a37..4c4d660 100644
--- a/filters.cpp
+++ b/filters.cpp
@@ -381,10 +381,10 @@ void Redirector::ChannelInitialize(const std::string &channel, const NameValuePa
if (channel.empty())
{
m_target = parameters.GetValueWithDefault("RedirectionTargetPointer", (BufferedTransformation*)NULL);
- m_passSignal = parameters.GetValueWithDefault("PassSignal", true);
+ m_behavior = parameters.GetIntValueWithDefault("RedirectionBehavior", PASS_EVERYTHING);
}
- if (m_target && m_passSignal)
+ if (m_target && GetPassSignals())
m_target->ChannelInitialize(channel, parameters, propagation);
}