[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, stable-queue, updated. v0.9.22-20-g4080725
Colin Guthrie
gitmailer-noreply at 0pointer.de
Sun Jan 23 05:12:04 PST 2011
This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.
The stable-queue branch has been updated
from ec5a7857127a1b3b9c5517c4a70a9b2c8aab35ca (commit)
- Log -----------------------------------------------------------------
4080725 tunnel: Fix automatic names when source/sink_name argument is missing.
-----------------------------------------------------------------------
Summary of changes:
src/modules/module-tunnel.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
commit 408072519ee1a8cb98b795ec1f429bf39413f3eb
Author: Colin Guthrie <cguthrie at mandriva.org>
Date: Sun Jan 16 14:34:11 2011 +0000
tunnel: Fix automatic names when source/sink_name argument is missing.
Spotted by palmerdabbelt via #894
diff --git a/src/modules/module-tunnel.c b/src/modules/module-tunnel.c
index ce5f8d5..176c2c0 100644
--- a/src/modules/module-tunnel.c
+++ b/src/modules/module-tunnel.c
@@ -1919,7 +1919,7 @@ int pa__init(pa_module*m) {
#ifdef TUNNEL_SINK
if (!(dn = pa_xstrdup(pa_modargs_get_value(ma, "sink_name", NULL))))
- dn = pa_sprintf_malloc("tunnel.%s", u->server_name);
+ dn = pa_sprintf_malloc("tunnel-sink.%s", u->server_name);
pa_sink_new_data_init(&data);
data.driver = __FILE__;
@@ -1963,7 +1963,7 @@ int pa__init(pa_module*m) {
#else
if (!(dn = pa_xstrdup(pa_modargs_get_value(ma, "source_name", NULL))))
- dn = pa_sprintf_malloc("tunnel.%s", u->server_name);
+ dn = pa_sprintf_malloc("tunnel-source.%s", u->server_name);
pa_source_new_data_init(&data);
data.driver = __FILE__;
--
hooks/post-receive
PulseAudio Sound Server
More information about the pulseaudio-commits
mailing list