From d53c57a521ddb186a461a3167434aa10950a5bd4 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 29 Aug 1995 18:36:16 +0000 Subject: (S_socket_send, S_socket_recv): `aquire' -> `acquire'. --- pflocal/socket.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pflocal') diff --git a/pflocal/socket.c b/pflocal/socket.c index 654a1d7c..86c465da 100644 --- a/pflocal/socket.c +++ b/pflocal/socket.c @@ -288,11 +288,11 @@ S_socket_send (struct sock_user *user, struct addr *dest_addr, int flags, if (!err) { /* Grab the destination socket's read pipe directly, and stuff data - into it. This is not quite the usage sock_aquire_read_pipe was + into it. This is not quite the usage sock_acquire_read_pipe was intended for, but it will work, as the only inappropiate errors occur on a broken pipe, which shouldn't be possible with the sort of sockets with which we can use socket_send... XXXX */ - err = sock_aquire_read_pipe (dest_sock, &pipe); + err = sock_acquire_read_pipe (dest_sock, &pipe); if (!err) { err = pipe_send (pipe, source_addr, data, data_len, @@ -341,7 +341,7 @@ S_socket_recv (struct sock_user *user, flags = 0; - err = sock_aquire_read_pipe (user->sock, &pipe); + err = sock_acquire_read_pipe (user->sock, &pipe); if (err == EPIPE) /* EOF */ { -- cgit v1.2.3