diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 17:44:42 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 17:44:42 +0000 |
commit | 6e22e607ec8d0dc2173eded74f3395fdcd9b85a1 (patch) | |
tree | 9f074ecbd88006a9c583e078a3fd170d0f550e0b | |
parent | 5d1c83944eef5c9f00d0d2f048b19898245da943 (diff) |
(diskfs_S_file_sync): Accept and ignore new parm OMITMETADATA.
-rw-r--r-- | libdiskfs/file-sync.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libdiskfs/file-sync.c b/libdiskfs/file-sync.c index 01b1c194..a36e327b 100644 --- a/libdiskfs/file-sync.c +++ b/libdiskfs/file-sync.c @@ -1,5 +1,5 @@ /* libdiskfs implementation of fs.defs: file_seek - Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation + Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -21,7 +21,8 @@ /* Implement file_sync as described in <hurd/fs.defs>. */ kern_return_t diskfs_S_file_sync (struct protid *cred, - int wait) + int wait, + int omitmetadata) { struct node *np; |