summaryrefslogtreecommitdiff
path: root/hostmux/hostmux.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-13 22:33:14 +0000
committerRoland McGrath <roland@gnu.org>2002-05-13 22:33:14 +0000
commit7b4e4fc828e0cd6427193cb39b1d6ef4ff3ca97d (patch)
tree1609def56e07b7dc9398b405d495a6ab307b356b /hostmux/hostmux.c
parent8f95970e61d7d6b2041186a16fd60aea062b0924 (diff)
2002-05-13 Roland McGrath <roland@frob.com>
* leaf.c (create_host_node): Set NEW->nn_translated appropriately. * hostmux.c (main): Set netfs_root_node->nn_translated to zero.
Diffstat (limited to 'hostmux/hostmux.c')
-rw-r--r--hostmux/hostmux.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hostmux/hostmux.c b/hostmux/hostmux.c
index b0a72693..3778613c 100644
--- a/hostmux/hostmux.c
+++ b/hostmux/hostmux.c
@@ -112,7 +112,7 @@ main (int argc, char **argv)
/* Parse our command line arguments. */
argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, 0);
-
+
task_get_bootstrap_port (mach_task_self (), &bootstrap);
netfs_init ();
@@ -147,6 +147,7 @@ main (int argc, char **argv)
netfs_root_node->nn_stat.st_ino = 2;
netfs_root_node->nn_stat.st_mode =
S_IFDIR | (ul_stat.st_mode & ~S_IFMT & ~S_ITRANS);
+ netfs_root_node->nn_translated = 0;
/* If the underlying node isn't a directory, propagate read permission to
execute permission since we need that for lookups. */
@@ -162,7 +163,7 @@ main (int argc, char **argv)
fshelp_touch (&netfs_root_node->nn_stat, TOUCH_ATIME|TOUCH_MTIME|TOUCH_CTIME,
hostmux_maptime);
-
+
for (;;) /* ?? */
netfs_server_loop ();
}