diff --git a/lib/ipc/server.c b/lib/ipc/server.c index 8c9ffe887..c58a40e5e 100644 --- a/lib/ipc/server.c +++ b/lib/ipc/server.c @@ -676,9 +676,9 @@ socket_release(heim_sipc ctx) #endif int -heim_sipc_launchd_fd_init(int fd, - heim_ipc_callback callback, - void *user, heim_sipc *ctx) +heim_sipc_launchd_stream_fd_init(int fd, + heim_ipc_callback callback, + void *user, heim_sipc *ctx) { #ifndef HAVE_GCD heim_sipc ct = calloc(1, sizeof(*ct)); @@ -701,7 +701,7 @@ heim_sipc_service_unix(const char *service, { int fd = -1; - return heim_sipc_launchd_fd_init(fd, callback, user, ctx); + return heim_sipc_launchd_stream_fd_init(fd, callback, user, ctx); }