diff options
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/process.c | 3 | ||||
-rw-r--r-- | source4/smbd/rewrite.c | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/source4/smbd/process.c b/source4/smbd/process.c index 0e486d7849..7094364bde 100644 --- a/source4/smbd/process.c +++ b/source4/smbd/process.c @@ -37,9 +37,6 @@ void smbd_process_init(void) } namecache_enable(); - if (!locking_init(0)) - exit(1); - if (!share_info_db_init()) exit(1); diff --git a/source4/smbd/rewrite.c b/source4/smbd/rewrite.c index e5e9340a72..e959fd049d 100644 --- a/source4/smbd/rewrite.c +++ b/source4/smbd/rewrite.c @@ -44,9 +44,6 @@ void unbecome_root(void) BOOL namecache_enable(void) { return True; } -BOOL locking_init(int read_only) -{ return True; } - BOOL share_info_db_init(void) { return True; } @@ -59,6 +56,3 @@ BOOL share_access_check(struct request_context *req, struct tcon_context *conn, BOOL init_names(void) { return True; } -BOOL become_user_permanently(uid_t uid, gid_t gid) -{ return True; } - |