diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-14 18:07:45 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-14 18:07:45 +0000 |
commit | 11d4d33ed17ba7e2f99e5eee752eedfe6f61eabd (patch) | |
tree | be56415e71b28dd9f4fbb7a0818f28d0e0bb870d | |
parent | 274231f29e215b1300fa4826bb9391b2e9321cdd (diff) |
(netfs_make_node): Initialize NP->identity.
-rw-r--r-- | libnetfs/make-node.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libnetfs/make-node.c b/libnetfs/make-node.c index b16e9ac4..1e2c3735 100644 --- a/libnetfs/make-node.c +++ b/libnetfs/make-node.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -31,6 +31,7 @@ netfs_make_node (struct netnode *nn) mutex_init (&np->lock); np->references = 1; np->sockaddr = MACH_PORT_NULL; + np->identity = MACH_PORT_NULL; np->owner = 0; fshelp_transbox_init (&np->transbox, &np->lock, np); |