From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstddjb/ipc_connect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libstddjb/ipc_connect.c') diff --git a/src/libstddjb/ipc_connect.c b/src/libstddjb/ipc_connect.c index 6c5eac2..9aa4dd9 100644 --- a/src/libstddjb/ipc_connect.c +++ b/src/libstddjb/ipc_connect.c @@ -4,18 +4,18 @@ #include #include #include -#include +#include #include #include int ipc_connect (int s, char const *p) { struct sockaddr_un sa ; - unsigned int l = str_len(p) ; + size_t l = strlen(p) ; if (l > IPCPATH_MAX) return (errno = EPROTO, 0) ; - byte_zero((char *) &sa, sizeof sa) ; + memset(&sa, 0, sizeof sa) ; sa.sun_family = AF_UNIX ; - byte_copy(sa.sun_path, l+1, p) ; + memcpy(sa.sun_path, p, l+1) ; if (connect(s, (struct sockaddr *)&sa, sizeof sa) == -1) { if (errno == EINTR) errno = EINPROGRESS ; -- cgit v1.2.3