[polypaudio-commits] r533 - in /trunk/src/utils: pacat.c pactl.c paplay.c
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Mon Feb 20 15:29:47 PST 2006
Author: lennart
Date: Tue Feb 21 00:29:46 2006
New Revision: 533
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=533&root=polypaudio&view=rev
Log:
change calls of pa_context_connect() to pass flags arugment correctly
Modified:
trunk/src/utils/pacat.c
trunk/src/utils/pactl.c
trunk/src/utils/paplay.c
Modified: trunk/src/utils/pacat.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/utils/pacat.c?rev=533&root=polypaudio&r1=532&r2=533&view=diff
==============================================================================
--- trunk/src/utils/pacat.c (original)
+++ trunk/src/utils/pacat.c Tue Feb 21 00:29:46 2006
@@ -509,7 +509,7 @@
pa_context_set_state_callback(context, context_state_callback, NULL);
/* Connect the context */
- pa_context_connect(context, server, 1, NULL);
+ pa_context_connect(context, server, 0, NULL);
/* Run the main loop */
if (pa_mainloop_run(m, &ret) < 0) {
Modified: trunk/src/utils/pactl.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/utils/pactl.c?rev=533&root=polypaudio&r1=532&r2=533&view=diff
==============================================================================
--- trunk/src/utils/pactl.c (original)
+++ trunk/src/utils/pactl.c Tue Feb 21 00:29:46 2006
@@ -752,7 +752,7 @@
}
pa_context_set_state_callback(context, context_state_callback, NULL);
- pa_context_connect(context, server, 1, NULL);
+ pa_context_connect(context, server, 0, NULL);
if (pa_mainloop_run(m, &ret) < 0) {
fprintf(stderr, "pa_mainloop_run() failed.\n");
Modified: trunk/src/utils/paplay.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/utils/paplay.c?rev=533&root=polypaudio&r1=532&r2=533&view=diff
==============================================================================
--- trunk/src/utils/paplay.c (original)
+++ trunk/src/utils/paplay.c Tue Feb 21 00:29:46 2006
@@ -352,7 +352,7 @@
pa_context_set_state_callback(context, context_state_callback, NULL);
/* Connect the context */
- pa_context_connect(context, server, 1, NULL);
+ pa_context_connect(context, server, 0, NULL);
/* Run the main loop */
if (pa_mainloop_run(m, &ret) < 0) {
More information about the pulseaudio-commits
mailing list