diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-24 14:16:41 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-24 14:16:41 +0000 |
commit | ad2974cd05b4d08c8b92f505bf95aa8e8533235f (patch) | |
tree | 68ed4b1c3c99a13154fb768ba9f4bfcc1a3e7ce9 /source3/groupdb | |
parent | 0ebb29e032f2cdbfdb55184c0b97fd1f71b84609 (diff) | |
download | samba-ad2974cd05b4d08c8b92f505bf95aa8e8533235f.tar.gz samba-ad2974cd05b4d08c8b92f505bf95aa8e8533235f.tar.bz2 samba-ad2974cd05b4d08c8b92f505bf95aa8e8533235f.zip |
added "net join" command
this completes the first stage of the smbd ADS support
(This used to be commit 058a5aee901e6609969ef7e1d482a720a84a4a12)
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/mapping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index 92a98ff7a4..c39bb8cdff 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -233,7 +233,7 @@ add a privilege to a privilege array ****************************************************************************/ BOOL add_privilege(uint32 *privilege, uint32 priv) { - int i; + int i=0; while (i<PRIV_ALL_INDEX && privilege[i]!=0 && privilege[i]!=priv) i++; @@ -262,6 +262,7 @@ BOOL add_all_privilege(uint32 *privilege) add_privilege(privilege, SE_PRIV_ADD_USERS); add_privilege(privilege, SE_PRIV_ADD_MACHINES); add_privilege(privilege, SE_PRIV_PRINT_OPERATOR); + return True; } /**************************************************************************** @@ -301,7 +302,6 @@ BOOL default_group_mapping(void) fstring str_admins; fstring str_users; fstring str_guests; - int i; uint32 privilege_none[PRIV_ALL_INDEX]; uint32 privilege_all[PRIV_ALL_INDEX]; |