summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-01-17 09:29:52 -0500
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-01-17 09:29:52 -0500
commitf14f2a4c43b54dcbdf8d7106be36328ce498393e (patch)
treebc8766089445757000258b61081e980e1b92aca3 /source3/include/vfs.h
parent096e40c9169b2121a82c42d3cf31cbfb869603ce (diff)
parent03387a0f5886d449eda359a5acecd830f3bd35bc (diff)
downloadsamba-f14f2a4c43b54dcbdf8d7106be36328ce498393e.tar.gz
samba-f14f2a4c43b54dcbdf8d7106be36328ce498393e.tar.bz2
samba-f14f2a4c43b54dcbdf8d7106be36328ce498393e.zip
Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into v3-2-test
(This used to be commit 15ef5e4884505bca7990e44200d0235764e9057f)
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index b0da7e81a5..d03cf3477d 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -261,7 +261,6 @@ typedef enum _vfs_op_type {
/* offline operations */
SMB_VFS_OP_IS_OFFLINE,
SMB_VFS_OP_SET_OFFLINE,
- SMB_VFS_OP_IS_REMOTESTORAGE,
/* This should always be last enum value */
@@ -413,10 +412,8 @@ struct vfs_ops {
bool (*aio_force)(struct vfs_handle_struct *handle, struct files_struct *fsp);
/* offline operations */
- int (*is_offline)(struct vfs_handle_struct *handle, const char *path, SMB_STRUCT_STAT *sbuf, bool *offline);
+ bool (*is_offline)(struct vfs_handle_struct *handle, const char *path, SMB_STRUCT_STAT *sbuf);
int (*set_offline)(struct vfs_handle_struct *handle, const char *path);
- bool (*is_remotestorage)(struct vfs_handle_struct *handle, const char *path);
-
} ops;
struct vfs_handles_pointers {
@@ -542,7 +539,6 @@ struct vfs_ops {
/* offline operations */
struct vfs_handle_struct *is_offline;
struct vfs_handle_struct *set_offline;
- struct vfs_handle_struct *is_remotestorage;
} handles;
};