diff options
author | Gerald Carter <jerry@samba.org> | 2005-04-25 02:30:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:41 -0500 |
commit | 2d6e5ad90fe358e0d1b94798819713316723125f (patch) | |
tree | 906365512452a89a1b281d69084725fcf3c5c8e6 /source3/nsswitch | |
parent | d7173b35e918292694b9cf27ecbcad3c9cc86da6 (diff) | |
download | samba-2d6e5ad90fe358e0d1b94798819713316723125f.tar.gz samba-2d6e5ad90fe358e0d1b94798819713316723125f.tar.bz2 samba-2d6e5ad90fe358e0d1b94798819713316723125f.zip |
r6450: * fix typo in htlm_auth help message
* add synonym for idmap_rid in better lining with
other idmap backend names
* remove old debug messages when idmap {uid|gid} options
are not defined
(This used to be commit 03ebf3ebfe83897d8c18e57ed378154d1377874b)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_util.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index 68560c040e..efd84bbf73 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -543,14 +543,12 @@ BOOL winbindd_param_init(void) /* Parse winbind uid and winbind_gid parameters */ if (!lp_idmap_uid(&server_state.uid_low, &server_state.uid_high)) { - DEBUG(0, ("winbindd: idmap uid range missing or invalid\n")); - DEBUG(0, ("winbindd: cannot continue, exiting.\n")); + DEBUG(2, ("winbindd: idmap uid range missing or invalid\n")); return False; } if (!lp_idmap_gid(&server_state.gid_low, &server_state.gid_high)) { - DEBUG(0, ("winbindd: idmap gid range missing or invalid\n")); - DEBUG(0, ("winbindd: cannot continue, exiting.\n")); + DEBUG(2, ("winbindd: idmap gid range missing or invalid\n")); return False; } |