diff options
author | Günther Deschner <gd@samba.org> | 2005-01-19 17:08:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:59 -0500 |
commit | 31dea0391602cf8daae4175c42e300c4909aa0a6 (patch) | |
tree | 6d0ea15e869e2c08aec109bc39d6fc31bea942a9 | |
parent | b3757eadf05a4e47a5cd19049ee2c5eecf140c37 (diff) | |
download | samba-31dea0391602cf8daae4175c42e300c4909aa0a6.tar.gz samba-31dea0391602cf8daae4175c42e300c4909aa0a6.tar.bz2 samba-31dea0391602cf8daae4175c42e300c4909aa0a6.zip |
r4850: Fix remaining pdb_setsampwent-calls.
To get all entries use a 0 acb_mask.
Guenther
(This used to be commit bc729f8fd877236a503cc9df64138b2be2e1a91d)
-rw-r--r-- | source3/utils/net.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 729a0c9db7..cfbc8aca51 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -601,10 +601,9 @@ static uint32 get_maxrid(void) GROUP_MAP *map = NULL; int num_entries = 0; int i; - uint32 acb_mask = ACB_WSTRUST | ACB_NORMAL | ACB_DOMTRUST | ACB_SVRTRUST; - if (!pdb_setsampwent(False, acb_mask)) { - DEBUG(0, ("load_sampwd_entries: Unable to open passdb.\n")); + if (!pdb_setsampwent(False, 0)) { + DEBUG(0, ("get_maxrid: Unable to open passdb.\n")); return 0; } |