From 356e13335702508f50b81990c2847742e1a0caae Mon Sep 17 00:00:00 2001 From: David Henningsson Date: Fri, 29 Aug 2014 14:54:19 +0200 Subject: [PATCH] pstream-util: Fix build on freebsd The previous fix was not entirely complete. Signed-off-by: David Henningsson --- src/pulsecore/pstream-util.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pulsecore/pstream-util.c b/src/pulsecore/pstream-util.c index a31c0c88a..0403ab7bd 100644 --- a/src/pulsecore/pstream-util.c +++ b/src/pulsecore/pstream-util.c @@ -77,6 +77,10 @@ void pa_pstream_send_tagstruct_with_creds(pa_pstream *p, pa_tagstruct *t, const pa_pstream_send_tagstruct_with_ancil(p, t, NULL); } +void pa_pstream_send_tagstruct_with_fds(pa_pstream *p, pa_tagstruct *t, int nfd, const int *fds) { + pa_assert_not_reached(); +} + #endif void pa_pstream_send_error(pa_pstream *p, uint32_t tag, uint32_t error) {