summaryrefslogtreecommitdiff
path: root/source3/utils/testparm.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2002-04-14 12:20:10 +0000
committerVolker Lendecke <vlendec@samba.org>2002-04-14 12:20:10 +0000
commit492ab172d4b78ec87e775a8f040b25138890d2e8 (patch)
tree80564c7641b27ca21c4023f7a707846f178c9b95 /source3/utils/testparm.c
parent4023a61892278c9e09acd035166a55ff2b3d4f30 (diff)
downloadsamba-492ab172d4b78ec87e775a8f040b25138890d2e8.tar.gz
samba-492ab172d4b78ec87e775a8f040b25138890d2e8.tar.bz2
samba-492ab172d4b78ec87e775a8f040b25138890d2e8.zip
3 branches might become a pain... :-)
Volker (This used to be commit 8ecfed59a3905c25a708172bf39511a0b7637776)
Diffstat (limited to 'source3/utils/testparm.c')
-rw-r--r--source3/utils/testparm.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index defde6cb2c..c6e417a2bc 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -152,6 +152,15 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
}
}
+ if (strlen(lp_winbind_separator()) != 1) {
+ printf("ERROR: the 'winbind separator' parameter must be a single character.\n");
+ ret = 1;
+ }
+
+ if (*lp_winbind_separator() == '+') {
+ printf("'winbind separator = +' might cause problems with group membership.\n");
+ }
+
return ret;
}