Skip to content

Commit

Permalink
Use more conservative JACK client name (a simple token without whites…
Browse files Browse the repository at this point in the history
…pace).
  • Loading branch information
nettings committed Feb 16, 2019
1 parent 4751a4e commit 95246dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion audio_jack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion scripts/shairport-sync.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 95246dc

Please sign in to comment.