diff options
author | Volker Lendecke <vlendec@samba.org> | 2002-11-03 12:54:12 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2002-11-03 12:54:12 +0000 |
commit | 9422775efd23d1f89379e7c1189265e9d27084d6 (patch) | |
tree | 0f0971be54f15d6346c63d3655837d28a5c2413e /source3/utils | |
parent | 670764e38c236e2d8ea295ca04889c8d1650ef33 (diff) | |
download | samba-9422775efd23d1f89379e7c1189265e9d27084d6.tar.gz samba-9422775efd23d1f89379e7c1189265e9d27084d6.tar.bz2 samba-9422775efd23d1f89379e7c1189265e9d27084d6.zip |
Force algorithmic rid base to sane values and talk about it.
Volker
(This used to be commit ce5b2d991b42bbf6865ff75194f8ee4b46694841)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/testparm.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index c81d6e72e4..f2636fdafb 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -168,6 +168,14 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_ printf("'winbind separator = +' might cause problems with group membership.\n"); } + if (lp_algorithmic_rid_base() < 1000) { + printf("'algorithmic rid base' must be equal or above 1000.\n"); + } + + if (lp_algorithmic_rid_base() & 1) { + printf("'algorithmic rid base' must be even.\n"); + } + return ret; } |