[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v1.0-dev-44-g26c64fb

Colin Guthrie gitmailer-noreply at 0pointer.de
Sun Jan 16 06:33:49 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 master branch has been updated
      from  3e552bdf19ac06be8377ec318ee405ea81400661 (commit)

- Log -----------------------------------------------------------------
26c64fb 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 26c64fb54e3376564a76c4bfbd9f56b110d58c30
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