Tweak the printing of client connections a bit so that it's more apparent

what and who it is that's connecting.


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1014 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2006-06-13 09:33:55 +00:00
parent 7582f7493b
commit 9288479338
3 changed files with 10 additions and 3 deletions

View file

@ -86,6 +86,9 @@ void pa_client_kill(pa_client *c) {
void pa_client_set_name(pa_client *c, const char *name) {
assert(c);
pa_log_info(__FILE__": client %u changed name from \"%s\" to \"%s\"", c->index, c->name, name);
pa_xfree(c->name);
c->name = pa_xstrdup(name);