From: Jörn Nettingsmeier Date: Sat, 16 Feb 2019 02:05:05 +0000 (+0000) Subject: Use more conservative JACK client name (a simple token without whitespace). X-Git-Tag: 3.3RC0~52^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95246dcd84698216692aab31a4df99d27acb9479;p=thirdparty%2Fshairport-sync.git Use more conservative JACK client name (a simple token without whitespace). --- diff --git a/audio_jack.c b/audio_jack.c index 5eb8f285..1e848678 100644 --- a/audio_jack.c +++ b/audio_jack.c @@ -179,7 +179,7 @@ int jack_init(__attribute__((unused)) int argc, __attribute__((unused)) char **a } if (config.jack_client_name == NULL) - config.jack_client_name = strdup("Shairport Sync"); + config.jack_client_name = strdup("shairport-sync"); jackbuf = jack_ringbuffer_create(buffer_size); if (jackbuf == NULL) diff --git a/scripts/shairport-sync.conf b/scripts/shairport-sync.conf index c06c32e7..dded9294 100644 --- a/scripts/shairport-sync.conf +++ b/scripts/shairport-sync.conf @@ -108,7 +108,7 @@ pa = // Parameters for the "jack" JACK Audio Connection Kit backend. jack = { -// client_name = "Shairport Sync"; //Set this to the name of the client that should appear in "Connections" when Shairport Sync is active. +// client_name = "shairport-sync"; //Set this to the name of the client that should appear in "Connections" when Shairport Sync is active. }; // Parameters for the "pipe" audio back end, a back end that directs raw CD-style audio output to a pipe. No interpolation is done.