diff options
author | Günther Deschner <gd@samba.org> | 2011-02-24 23:04:40 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-25 01:08:52 +0100 |
commit | 59e45a979ca49b485bc5a88d79d1ce83b80d5bee (patch) | |
tree | abdff2b3f1b45bc91e6d81d523e988045de383d4 /source3/modules | |
parent | 313db81ad3de6cf7759d6a0fc21ee32419b2e62b (diff) | |
download | samba-59e45a979ca49b485bc5a88d79d1ce83b80d5bee.tar.gz samba-59e45a979ca49b485bc5a88d79d1ce83b80d5bee.tar.bz2 samba-59e45a979ca49b485bc5a88d79d1ce83b80d5bee.zip |
s3-vfs: make syncops_connect in modules/vfs_syncops.c static.
Guenther
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_syncops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_syncops.c b/source3/modules/vfs_syncops.c index 76072abc33..d5770d092c 100644 --- a/source3/modules/vfs_syncops.c +++ b/source3/modules/vfs_syncops.c @@ -242,8 +242,8 @@ static int syncops_close(vfs_handle_struct *handle, files_struct *fsp) return SMB_VFS_NEXT_CLOSE(handle, fsp); } -int syncops_connect(struct vfs_handle_struct *handle, const char *service, - const char *user) +static int syncops_connect(struct vfs_handle_struct *handle, const char *service, + const char *user) { struct syncops_config_data *config; |