diff options
author | Miles Bader <miles@gnu.org> | 1995-08-29 18:36:16 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-29 18:36:16 +0000 |
commit | d53c57a521ddb186a461a3167434aa10950a5bd4 (patch) | |
tree | 2f1047381b3648bb3451f42b6e3394e4e1947d3a | |
parent | 9917964b0cc77c98f48394e6a3c28317ec0d6211 (diff) |
(S_socket_send, S_socket_recv): `aquire' -> `acquire'.
-rw-r--r-- | pflocal/socket.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ { |