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 | 2ce430f6071e45e899ad86891eecc26be805a445 (patch) | |
| tree | ed98156db9fc7f77af7a8400c313f2394e96c18c | |
| parent | 6541698d7d102f16295bb8240d02dd112197b163 (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.
| -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); |
