diff options
author | Miles Bader <miles@gnu.org> | 1995-08-29 18:37:19 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-29 18:37:19 +0000 |
commit | b3b6efaf4117e067cc1c738e01f853789aaa860c (patch) | |
tree | b0e1e48d2e0fea40507435f692bc23570d263049 /pflocal | |
parent | d53c57a521ddb186a461a3167434aa10950a5bd4 (diff) |
`aquire' -> `acquire'.
Diffstat (limited to 'pflocal')
-rw-r--r-- | pflocal/sock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pflocal/sock.h b/pflocal/sock.h index 16fdbe4a..23528480 100644 --- a/pflocal/sock.h +++ b/pflocal/sock.h @@ -89,12 +89,12 @@ struct sock additional reference, or an error saying why it's not possible. NULL may also be returned in PIPE with a 0 error, meaning that EOF should be returned. SOCK mustn't be locked. */ -error_t sock_aquire_read_pipe (struct sock *sock, struct pipe **pipe); +error_t sock_acquire_read_pipe (struct sock *sock, struct pipe **pipe); /* Returns the pipe that SOCK is writing to in PIPE, locked and with an additional reference, or an error saying why it's not possible. SOCK mustn't be locked. */ -error_t sock_aquire_write_pipe (struct sock *sock, struct pipe **pipe); +error_t sock_acquire_write_pipe (struct sock *sock, struct pipe **pipe); /* Connect together the previously unconnected sockets SOCK1 and SOCK2. */ error_t sock_connect (struct sock *sock1, struct sock *sock2); |