diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-08-20 08:20:14 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-08-20 08:20:14 +0000 |
commit | 1579089d91aeb43802b558bf4c41f4db5360618c (patch) | |
tree | aecf91faf4a7f48d252b90df1e93599723fb10a1 /source3 | |
parent | aa9fb2a81701d3c1057fdb02c476475c1eb50da8 (diff) | |
download | samba-1579089d91aeb43802b558bf4c41f4db5360618c.tar.gz samba-1579089d91aeb43802b558bf4c41f4db5360618c.tar.bz2 samba-1579089d91aeb43802b558bf4c41f4db5360618c.zip |
Make compiling vfs_readonly static possible
(This used to be commit b8ef536b9e62ceeed6c4db58923a66ba8506871d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_readonly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_readonly.c b/source3/modules/vfs_readonly.c index 5959ce900c..ee9e40c2fc 100644 --- a/source3/modules/vfs_readonly.c +++ b/source3/modules/vfs_readonly.c @@ -92,7 +92,7 @@ static vfs_op_tuple readonly_op_tuples[] = { {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP} }; -NTSTATUS init_module(void) +NTSTATUS vfs_readonly_init(void) { return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, MODULE_NAME, readonly_op_tuples); } |