summaryrefslogtreecommitdiffstats
path: root/src/socket-client.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-09 23:26:10 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-09 23:26:10 +0000
commitcffc7768bd5b8d16308c15102b4d03d08d287098 (patch)
tree389f6035e787b8e2106862d77718cc9dc4f140b6 /src/socket-client.c
parent863fb90d90c2e57e60a0f5b81e0847319399b8ed (diff)
fix recording for simpel and esound protocols
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@54 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/socket-client.c')
-rw-r--r--src/socket-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket-client.c b/src/socket-client.c
index 6ff11980..9a8c5607 100644
--- a/src/socket-client.c
+++ b/src/socket-client.c
@@ -120,7 +120,7 @@ struct pa_socket_client* pa_socket_client_new_ipv4(struct pa_mainloop_api *m, ui
goto fail;
}
- pa_make_tcp_socket_low_delay(c->fd);
+ pa_socket_tcp_low_delay(c->fd);
sa.sin_family = AF_INET;
sa.sin_port = htons(port);
@@ -149,7 +149,7 @@ struct pa_socket_client* pa_socket_client_new_unix(struct pa_mainloop_api *m, co
goto fail;
}
- pa_make_socket_low_delay(c->fd);
+ pa_socket_low_delay(c->fd);
sa.sun_family = AF_LOCAL;
strncpy(sa.sun_path, filename, sizeof(sa.sun_path)-1);