diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-10-05 10:16:23 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-10-05 10:16:23 +0000 |
commit | 7b8f563b232c560d0083e9e378b7cb8d95ce9586 (patch) | |
tree | e7b88d5d9a707591f9f91415a8b0056a2937394e /libdiskfs/node-times.c | |
parent | 3adb292d0a8e11838d0dfafc623143d291c3b5ac (diff) |
2007-10-05 Thomas Schwinge <tschwinge@gnu.org>
* node-times.c (diskfs_set_node_atime): Fix typo from last commit.
Diffstat (limited to 'libdiskfs/node-times.c')
-rw-r--r-- | libdiskfs/node-times.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/node-times.c b/libdiskfs/node-times.c index 81a66e58..4b3fbf10 100644 --- a/libdiskfs/node-times.c +++ b/libdiskfs/node-times.c @@ -28,7 +28,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ void diskfs_set_node_atime (struct node *np) { - if (!_disk_noatime && !diskfs_check_readonly ()) + if (!_diskfs_noatime && !diskfs_check_readonly ()) np->dn_set_atime = 1; } |