diff options
author | Jean-François Micouleau <jfm@samba.org> | 2001-03-23 00:50:31 +0000 |
---|---|---|
committer | Jean-François Micouleau <jfm@samba.org> | 2001-03-23 00:50:31 +0000 |
commit | 7154deb026d53cb0cd503562174c3332a372be63 (patch) | |
tree | d39228f6d856ddc94ad0f1ac2f50246b6bdf5db6 /source/smbd/server.c | |
parent | c9111dc1847968dbcb2d46ff62af53a61bc75e21 (diff) | |
download | samba-7154deb026d53cb0cd503562174c3332a372be63.tar.gz samba-7154deb026d53cb0cd503562174c3332a372be63.tar.xz samba-7154deb026d53cb0cd503562174c3332a372be63.zip |
first pass of the new group mapping code
J.F.
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 d2a7ad3be49..baa1536248a 100644 --- a/source/smbd/server.c +++ b/source/smbd/server.c @@ -772,6 +772,11 @@ static void usage(char *pname) /* possibly reload the services file. */ reload_services(True); + if (init_group_mapping()==False) { + printf("Could not open tdb mapping file.\n"); + return 0; + } + if(!pdb_generate_sam_sid()) { DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n")); exit(1); |