summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/utils/testparm.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index f37c7376fd..c980fd1758 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -40,6 +40,22 @@ extern FILE *dbf;
extern int DEBUGLEVEL;
extern pstring myhostname;
+/***********************************************
+ Here we do a set of 'hard coded' checks for bad
+ configuration settings.
+************************************************/
+
+void do_global_checks(void)
+{
+ if(lp_security() > SEC_SHARE && lp_revalidate(-1))
+ printf("WARNING: the 'revalidate' parameter is ignored in all but \
+'security=share' mode.\n");
+
+ if( lp_wins_support() && *lp_wins_server() )
+ printf("ERROR: both 'wins support = true' and 'wins server = <server>' \
+cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
+}
+
int main(int argc, char *argv[])
{
pstring configfile;
@@ -76,6 +92,8 @@ extern pstring myhostname;
printf("Loaded services file OK.\n");
+ do_global_checks();
+
for (s=0;s<1000;s++)
if (VALID_SNUM(s))
if (strlen(lp_servicename(s)) > 8) {