From 34862dbd43079d19faff31fa9ba996acc874d586 Mon Sep 17 00:00:00 2001 From: David Henningsson Date: Wed, 21 Jan 2015 15:06:53 +0100 Subject: [PATCH] protocol-native: Disable srbchannel by default Recent testing has shown some srbchannel related bugs that indicates that the srbchannel feature is not ready to be enabled by default. Therefore, temporary disable it for the 6.0 release and re-enable it in git master once 6.0 is released. Bugs: https://bugs.freedesktop.org/show_bug.cgi?id=88452 https://bugs.freedesktop.org/show_bug.cgi?id=88167 Signed-off-by: David Henningsson --- src/pulsecore/protocol-native.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c index 20598413d..f54f2a44a 100644 --- a/src/pulsecore/protocol-native.c +++ b/src/pulsecore/protocol-native.c @@ -2591,7 +2591,7 @@ static void setup_srbchannel(pa_native_connection *c) { int fdlist[2]; if (!c->options->srbchannel) { - pa_log_debug("Disabling srbchannel, reason: Disabled by module parameter"); + pa_log_debug("Disabling srbchannel, reason: Must be enabled by module parameter"); return; } @@ -5325,7 +5325,7 @@ int pa_native_options_parse(pa_native_options *o, pa_core *c, pa_modargs *ma) { pa_assert(PA_REFCNT_VALUE(o) >= 1); pa_assert(ma); - o->srbchannel = true; + o->srbchannel = false; if (pa_modargs_get_value_boolean(ma, "srbchannel", &o->srbchannel) < 0) { pa_log("srbchannel= expects a boolean argument."); return -1;