summaryrefslogtreecommitdiffstats
path: root/src/iochannel.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-11 01:09:46 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-11 01:09:46 +0000
commitccfd55420ebec191d7a3ed842ecb2740ceeb76ba (patch)
treedaa9eb191995053753a43e27a955b7ddec46f1e1 /src/iochannel.c
parentc7bd759cdb2b8f16693750f89ed781707a53e5a9 (diff)
add dependency script
fix some dependencies split off socket-util.c and clitext.c git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@60 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/iochannel.c')
-rw-r--r--src/iochannel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/iochannel.c b/src/iochannel.c
index 775c6139..38430034 100644
--- a/src/iochannel.c
+++ b/src/iochannel.c
@@ -5,6 +5,7 @@
#include "iochannel.h"
#include "util.h"
+#include "socket-util.h"
struct pa_iochannel {
int ifd, ofd;
@@ -182,7 +183,7 @@ void pa_iochannel_set_noclose(struct pa_iochannel*io, int b) {
void pa_iochannel_socket_peer_to_string(struct pa_iochannel*io, char*s, size_t l) {
assert(io && s && l);
- pa_peer_to_string(s, l, io->ifd);
+ pa_socket_peer_to_string(io->ifd, s, l);
}
int pa_iochannel_socket_set_rcvbuf(struct pa_iochannel *io, size_t l) {