diff options
author | Michael Adam <obnox@samba.org> | 2014-03-20 09:20:04 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-04-03 00:26:28 +0200 |
commit | fc987cf289e620358db945b8372aba16cdc0ea8a (patch) | |
tree | 902a36a82c70cffa38d57c97144ca6aa41475fef /source3 | |
parent | e9796edaa8c67c88b30b4e5e937fd7279674403b (diff) | |
download | samba-fc987cf289e620358db945b8372aba16cdc0ea8a.tar.gz |
autorid: initialize: fix typo in and further improve a debug message.
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/idmap_autorid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/idmap_autorid.c b/source3/winbindd/idmap_autorid.c index ec12278388d..5b4b7ef1e6b 100644 --- a/source3/winbindd/idmap_autorid.c +++ b/source3/winbindd/idmap_autorid.c @@ -621,8 +621,8 @@ static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom) config->rangesize; if (config->maxranges == 0) { - DEBUG(1, ("allowed uid range is smaller then rangesize, " - "increase uid range or decrease rangesize\n")); + DEBUG(1, ("Allowed uid range is smaller than rangesize. " + "Increase uid range or decrease rangesize.\n")); status = NT_STATUS_INVALID_PARAMETER; goto error; } |