diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-14 20:36:45 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-14 20:36:45 +0000 |
commit | b3c889dcc79b37d8feaea94f73e96d74df64583e (patch) | |
tree | 09948dacfc4e918d8c790704e34373aed5995953 | |
parent | b5e479d7c367f8e10cef0887e196ba5669d22a55 (diff) |
(diskfs_make_node): Initialize TRANSBOX member using new
function. Drop initialization of TRANSLATOR member.
-rw-r--r-- | libdiskfs/node-make.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/node-make.c b/libdiskfs/node-make.c index 15e01ee6..1fd57db5 100644 --- a/libdiskfs/node-make.c +++ b/libdiskfs/node-make.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1994, 1995 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -40,7 +40,7 @@ diskfs_make_node (struct disknode *dn) np->dirmod_reqs = 0; - fshelp_init_trans_link (&np->translator); + fshelp_init_transbox (&np->transbox, &np->lock, np); ioserver_initialize_conch (&np->conch, &np->lock); fshelp_lock_init (&np->userlock); |