diff options
-rw-r--r-- | src/pulsecore/card.c | 3 | ||||
-rw-r--r-- | src/pulsecore/client.c | 3 | ||||
-rw-r--r-- | src/pulsecore/sink-input.c | 3 | ||||
-rw-r--r-- | src/pulsecore/sink.c | 3 | ||||
-rw-r--r-- | src/pulsecore/source-output.c | 3 | ||||
-rw-r--r-- | src/pulsecore/source.c | 3 |
6 files changed, 12 insertions, 6 deletions
diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c index 397c6d7a..ac9e6d9f 100644 --- a/src/pulsecore/card.c +++ b/src/pulsecore/card.c @@ -28,6 +28,7 @@ #include <string.h> #include <pulse/xmalloc.h> +#include <pulse/util.h> #include <pulsecore/log.h> #include <pulsecore/macro.h> @@ -128,7 +129,7 @@ pa_card *pa_card_new(pa_core *core, pa_card_new_data *data) { c->core = core; c->name = pa_xstrdup(data->name); c->proplist = pa_proplist_copy(data->proplist); - c->driver = pa_xstrdup(data->driver); + c->driver = pa_xstrdup(pa_path_get_filename(data->driver)); c->module = data->module; c->sinks = pa_idxset_new(NULL, NULL); diff --git a/src/pulsecore/client.c b/src/pulsecore/client.c index 1e65fcd9..18004412 100644 --- a/src/pulsecore/client.c +++ b/src/pulsecore/client.c @@ -29,6 +29,7 @@ #include <string.h> #include <pulse/xmalloc.h> +#include <pulse/util.h> #include <pulsecore/core-subscribe.h> #include <pulsecore/log.h> @@ -64,7 +65,7 @@ pa_client *pa_client_new(pa_core *core, pa_client_new_data *data) { c = pa_xnew(pa_client, 1); c->core = core; c->proplist = pa_proplist_copy(data->proplist); - c->driver = pa_xstrdup(data->driver); + c->driver = pa_xstrdup(pa_path_get_filename(data->driver)); c->module = data->module; c->sink_inputs = pa_idxset_new(NULL, NULL); diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c index 8f182667..5667114e 100644 --- a/src/pulsecore/sink-input.c +++ b/src/pulsecore/sink-input.c @@ -30,6 +30,7 @@ #include <pulse/utf8.h> #include <pulse/xmalloc.h> +#include <pulse/util.h> #include <pulsecore/sample-util.h> #include <pulsecore/core-subscribe.h> @@ -229,7 +230,7 @@ pa_sink_input* pa_sink_input_new( i->state = PA_SINK_INPUT_INIT; i->flags = flags; i->proplist = pa_proplist_copy(data->proplist); - i->driver = pa_xstrdup(data->driver); + i->driver = pa_xstrdup(pa_path_get_filename(data->driver)); i->module = data->module; i->sink = data->sink; i->client = data->client; diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index bd90cf56..df46a2c4 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -32,6 +32,7 @@ #include <pulse/utf8.h> #include <pulse/xmalloc.h> #include <pulse/timeval.h> +#include <pulse/util.h> #include <pulsecore/sink-input.h> #include <pulsecore/namereg.h> @@ -184,7 +185,7 @@ pa_sink* pa_sink_new( s->flags = flags; s->name = pa_xstrdup(name); s->proplist = pa_proplist_copy(data->proplist); - s->driver = pa_xstrdup(data->driver); + s->driver = pa_xstrdup(pa_path_get_filename(data->driver)); s->module = data->module; s->card = data->card; diff --git a/src/pulsecore/source-output.c b/src/pulsecore/source-output.c index e3146564..cb8ba288 100644 --- a/src/pulsecore/source-output.c +++ b/src/pulsecore/source-output.c @@ -29,6 +29,7 @@ #include <pulse/utf8.h> #include <pulse/xmalloc.h> +#include <pulse/util.h> #include <pulsecore/sample-util.h> #include <pulsecore/core-subscribe.h> @@ -192,7 +193,7 @@ pa_source_output* pa_source_output_new( o->state = PA_SOURCE_OUTPUT_INIT; o->flags = flags; o->proplist = pa_proplist_copy(data->proplist); - o->driver = pa_xstrdup(data->driver); + o->driver = pa_xstrdup(pa_path_get_filename(data->driver)); o->module = data->module; o->source = data->source; o->client = data->client; diff --git a/src/pulsecore/source.c b/src/pulsecore/source.c index a30ef95a..fea66b7e 100644 --- a/src/pulsecore/source.c +++ b/src/pulsecore/source.c @@ -31,6 +31,7 @@ #include <pulse/utf8.h> #include <pulse/xmalloc.h> #include <pulse/timeval.h> +#include <pulse/util.h> #include <pulsecore/source-output.h> #include <pulsecore/namereg.h> @@ -175,7 +176,7 @@ pa_source* pa_source_new( s->flags = flags; s->name = pa_xstrdup(name); s->proplist = pa_proplist_copy(data->proplist); - s->driver = pa_xstrdup(data->driver); + s->driver = pa_xstrdup(pa_path_get_filename(data->driver)); s->module = data->module; s->card = data->card; |