diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-03-01 10:47:38 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-03-01 10:47:38 +0000 |
commit | 9043696121cf05fc64f12507058dd56345809a6f (patch) | |
tree | 914b26ea7c42eef203fbaa9eedc5140820d999ff | |
parent | e2366787aea4c1a083eb481dc3e58ec09a33c9e8 (diff) | |
download | samba-9043696121cf05fc64f12507058dd56345809a6f.tar.gz samba-9043696121cf05fc64f12507058dd56345809a6f.tar.bz2 samba-9043696121cf05fc64f12507058dd56345809a6f.zip |
i forgot to commit the privilege db init call
(This used to be commit e8ec2b118071ce1d8cbfbcebce3781ac753c5c22)
-rw-r--r-- | source3/smbd/server.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index b7fb3b5701..0bcfcb9c78 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -894,6 +894,10 @@ static BOOL init_structs(void ) if (!init_change_notify()) exit(1); + /* Setup privileges database */ + if (!privilege_init()) + exit(1); + /* re-initialise the timezone */ TimeInit(); |