From 2d6e5ad90fe358e0d1b94798819713316723125f Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 25 Apr 2005 02:30:12 +0000 Subject: 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) --- source3/nsswitch/winbindd_util.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/nsswitch/winbindd_util.c') 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; } -- cgit