Added support for FILE_DIRECTORY_FILE and FILE_NON_DIRECTORY_FILE open
options.
diff --git a/server/file.h b/server/file.h
index 159b630..92321e4 100644
--- a/server/file.h
+++ b/server/file.h
@@ -46,7 +46,7 @@
extern struct fd *alloc_fd( const struct fd_ops *fd_user_ops, struct object *user );
extern struct fd *open_fd( struct fd *fd, const char *name, int flags, mode_t *mode,
- unsigned int access, unsigned int sharing, const char *unlink_name );
+ unsigned int access, unsigned int sharing, unsigned int options );
extern struct fd *create_anonymous_fd( const struct fd_ops *fd_user_ops,
int unix_fd, struct object *user );
extern void *get_fd_user( struct fd *fd );