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 | 0053bd8b80cc08d65948c97f8ab0b4e2b829f083 (patch) | |
tree | 5312917960dd50137e91fe98eac31492e9717418 /source3/smbd | |
parent | 97bbbd49a8cf17421de7720ca6e4f89a42fa1aa0 (diff) | |
download | samba-0053bd8b80cc08d65948c97f8ab0b4e2b829f083.tar.gz samba-0053bd8b80cc08d65948c97f8ab0b4e2b829f083.tar.bz2 samba-0053bd8b80cc08d65948c97f8ab0b4e2b829f083.zip |
first pass of the new group mapping code
J.F.
(This used to be commit 7154deb026d53cb0cd503562174c3332a372be63)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/server.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index d2a7ad3be4..baa1536248 100644 --- a/source3/smbd/server.c +++ b/source3/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); |