]> code.delx.au - pulseaudio/commitdiff
fix pa_stream_set_name
authorOmair Majid <omajid@redhat.com>
Wed, 10 Sep 2008 21:07:50 +0000 (17:07 -0400)
committerLennart Poettering <lennart@poettering.net>
Wed, 10 Sep 2008 21:37:27 +0000 (00:37 +0300)
This patch fixes a bug in pa_stream_set_name. It uses the media.name
property instead of the application.name property when setting a
stream's name

>From aa1bda11d2084365cb0cec57f37d59f07ab80052 Mon Sep 17 00:00:00 2001
From: Omair Majid <omajid@redhat.com>
Date: Wed, 10 Sep 2008 17:02:28 -0400
Subject: [PATCH] Fix bug in pa_stream_set_name

Signed-off-by: Lennart Poettering <lennart@poettering.net>
src/pulse/stream.c

index 6890b7a14f8200f511a9207f83dc0fcab370b277..ababe17695bcac30d52d90c6cfb65035314f16a7 100644 (file)
@@ -1851,7 +1851,7 @@ pa_operation* pa_stream_set_name(pa_stream *s, const char *name, pa_stream_succe
     if (s->context->version >= 13) {
         pa_proplist *p = pa_proplist_new();
 
-        pa_proplist_sets(p, PA_PROP_APPLICATION_NAME, name);
+        pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
         o = pa_stream_proplist_update(s, PA_UPDATE_REPLACE, p, cb, userdata);
         pa_proplist_free(p);
     } else {