summaryrefslogtreecommitdiff
path: root/ufs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-04-23 18:35:14 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-04-23 18:35:14 +0000
commit1714516ba039f1197ea7ead3aa450b9b7f9b015e (patch)
tree1c840cc5a8aae1640331ae5b3e7fc987f47b2a40 /ufs
parent563a7efccc51e09063bf17c77822675813fe3f5e (diff)
(diskfs_dirempty): node_update -> diskfs_node_update.
Diffstat (limited to 'ufs')
-rw-r--r--ufs/dir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ufs/dir.c b/ufs/dir.c
index 67b3645e..ed7ac212 100644
--- a/ufs/dir.c
+++ b/ufs/dir.c
@@ -718,14 +718,14 @@ diskfs_dirempty(struct node *dp,
if (!diskfs_readonly)
dp->dn_set_atime = 1;
if (diskfs_synchronous)
- node_update (dp, 1);
+ diskfs_node_update (dp, 1);
return 0;
}
}
if (!diskfs_readonly)
dp->dn_set_atime = 1;
if (diskfs_synchronous)
- node_update (dp, 1);
+ diskfs_node_update (dp, 1);
vm_deallocate (mach_task_self (), buf, dp->dn_stat.st_size);
return 1;
}