summaryrefslogtreecommitdiff
path: root/pfinet
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-09-06 22:19:58 +0000
committerThomas Bushnell <thomas@gnu.org>1996-09-06 22:19:58 +0000
commit3647f0d4ecf714e8963ceec54aea7a95b82acd6e (patch)
tree7343165d919e24e03c88e610d8360e8716826463 /pfinet
parent61a2d535351e8bc1f91477d0864035d89dd718f2 (diff)
*** empty log message ***release-0-1
Diffstat (limited to 'pfinet')
-rw-r--r--pfinet/ChangeLog5
-rw-r--r--pfinet/socket-ops.c3
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);