summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-05-09 20:50:37 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-05-09 20:50:37 +0000
commit1a7705794c13c69f004f36d1a6e1557684f6f8fd (patch)
tree4b655ce54c16d077f2ffe43aad19dcc764eb23da
parenta1cdaed5248c3c695d03e79cf808ff65cb6e28b8 (diff)
(trivfs_S_file_sync): Accept and pass through new omitmeta parm.
-rw-r--r--libtrivfs/file-sync.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libtrivfs/file-sync.c b/libtrivfs/file-sync.c
index 04311a76..54076f67 100644
--- a/libtrivfs/file-sync.c
+++ b/libtrivfs/file-sync.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation
+ Copyright (C) 1994, 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,7 @@
kern_return_t
trivfs_S_file_sync (struct trivfs_protid *cred,
mach_port_t reply, mach_msg_type_name_t reply_type,
- int wait)
+ int wait, int omitmeta)
{
- return cred ? file_sync (cred->realnode, wait) : EOPNOTSUPP;
+ return cred ? file_sync (cred->realnode, wait, omitmeta) : EOPNOTSUPP;
}