summaryrefslogtreecommitdiff
path: root/hurd/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-06-14 07:44:21 +0000
committerRoland McGrath <roland@gnu.org>1995-06-14 07:44:21 +0000
commit5e75b23212343257fda8bea933521b0b7c5cdef6 (patch)
tree2b7f2944be39348ad00f719648df9a8f409fa30b /hurd/hurd
parent57ba525e3410eb2bb27007144f71a6814c2eeb9e (diff)
(_hurd_userlink_link): Properly set LINK->resource.next->resource.prevp when appropriate, not LINK->resource.next->thread.prevp!!!
Diffstat (limited to 'hurd/hurd')
-rw-r--r--hurd/hurd/userlink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurd/userlink.h b/hurd/hurd/userlink.h
index d61e2e2a7e..89fe3a0d2c 100644
--- a/hurd/hurd/userlink.h
+++ b/hurd/hurd/userlink.h
@@ -85,7 +85,7 @@ _hurd_userlink_link (struct hurd_userlink **chainp,
link->resource.next = *chainp;
if (link->resource.next)
- link->resource.next->thread.prevp = &link->resource.next;
+ link->resource.next->resource.prevp = &link->resource.next;
link->resource.prevp = chainp;
*chainp = link;