87dcf7af7e
- Updated to version 0.9.23: Bugfix only update, see changelog at http://pulseaudio.org/milestone/0.9.23 - Suppress too verbose error message at socket connection failure from a client; this is annoying when alsa-plugins-pulse fallback is used OBS-URL: https://build.opensuse.org/request/show/77429 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/pulseaudio?expand=0&rev=70
16 lines
440 B
Diff
16 lines
440 B
Diff
---
|
|
src/pulsecore/socket-client.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/src/pulsecore/socket-client.c
|
|
+++ b/src/pulsecore/socket-client.c
|
|
@@ -258,7 +258,7 @@
|
|
c->local = pa_socket_address_is_local(sa);
|
|
|
|
if ((c->fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0) {
|
|
- pa_log("socket(): %s", pa_cstrerror(errno));
|
|
+ /*pa_log("socket(): %s", pa_cstrerror(errno));*/
|
|
return -1;
|
|
}
|
|
|