diff options
author | Roland McGrath <roland@gnu.org> | 2000-12-03 06:29:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-12-03 06:29:21 +0000 |
commit | ee5a61f3a4cb72e89eb359cc9b77e47cd7984ec7 (patch) | |
tree | 45aa5924da99b5a6995844d1dab8ebe556c787af /ufs/inode.c | |
parent | 126b3b56da3e106b5a044cf8b1c3f9930dd7fc48 (diff) |
2000-12-02 Roland McGrath <roland@frob.com>
* inode.c (write_node): Remove assert that dn_set_mtime et al are
clear. It is ok if they are set in parallel, because the latter
setting will be carried out eventually.
Diffstat (limited to 'ufs/inode.c')
-rw-r--r-- | ufs/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ufs/inode.c b/ufs/inode.c index 1901788e..099609ab 100644 --- a/ufs/inode.c +++ b/ufs/inode.c @@ -1,5 +1,5 @@ /* Inode management routines - Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation + Copyright (C) 1994,95,96,97,98,2000 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -320,7 +320,6 @@ write_node (struct node *np) struct dinode *di = dino (np->dn->number); error_t err; - assert (!np->dn_set_ctime && !np->dn_set_atime && !np->dn_set_mtime); if (np->dn_stat_dirty) { assert (!diskfs_readonly); |