diff options
author | Simo Sorce <idra@samba.org> | 2001-10-22 06:53:28 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2001-10-22 06:53:28 +0000 |
commit | 1ffacd2068a896d36a9e56b6e28c63e2f7e98762 (patch) | |
tree | df24a8a335bbf7d9bb518656ce1a1cb49078e976 /source/smbd/server.c | |
parent | 3f919b4360b3bfcc133f7d88bc5177e9d93f2db2 (diff) | |
download | samba-1ffacd2068a896d36a9e56b6e28c63e2f7e98762.tar.gz samba-1ffacd2068a896d36a9e56b6e28c63e2f7e98762.tar.xz samba-1ffacd2068a896d36a9e56b6e28c63e2f7e98762.zip |
lets try the new mangling code
all the calls go through a compatibility interface will
change that soon
a new mangle.tdb file will be set in the lock directory
it contains a static mapping longname<->manglename
Diffstat (limited to 'source/smbd/server.c')
-rw-r--r-- | source/smbd/server.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/smbd/server.c b/source/smbd/server.c index 2e0fb1868d4..16a092f152f 100644 --- a/source/smbd/server.c +++ b/source/smbd/server.c @@ -844,6 +844,11 @@ static void usage(char *pname) if (!init_oplocks()) { exit(1); } + + /* Setup mangle */ + if (!init_mangle_tdb()) { + exit(1); + } /* Setup change notify */ if (!init_change_notify()) { |