diff options
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/ChangeLog | 5 | ||||
-rw-r--r-- | pfinet/socket-ops.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/pfinet/ChangeLog b/pfinet/ChangeLog index a7f861ed..1eee7896 100644 --- a/pfinet/ChangeLog +++ b/pfinet/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 6 16:46:43 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * socket-ops.c (S_socket_recv): Bother to pass + USER->sock->userflags through to the recvfrom routine. + Sat Jul 20 15:48:29 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu> * Makefile (lndist-asm-files): Look for files in $(srcdir). diff --git a/pfinet/socket-ops.c b/pfinet/socket-ops.c index 691dccfc..68e0ea80 100644 --- a/pfinet/socket-ops.c +++ b/pfinet/socket-ops.c @@ -482,7 +482,8 @@ S_socket_recv (struct sock_user *user, mutex_lock (&global_lock); become_task (user); - recvd = (*user->sock->ops->recvfrom) (user->sock, *data, amount, 0, flags, + recvd = (*user->sock->ops->recvfrom) (user->sock, *data, amount, + user->sock->userflags, flags, (struct sockaddr *)addr, &addrlen); mutex_unlock (&global_lock); |