From 9b11c3e08fabe8b93df4d17019eaf8cdd61566af Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 20 Jun 2007 08:47:13 +0000 Subject: r23552: Use proper comparison function an fix logic. Michael (This used to be commit a4714b34284f9e205556166166f41ce9dad4d3da) --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 09eeaeee56..92d5f07e2a 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3163,7 +3163,7 @@ static BOOL process_registry_globals(BOOL (*pfunc)(const char *, const char *)) &type, &size, &data_p); - if (strcmp(valname,"include")) { + if (strwicmp(valname,"include") == 0) { DEBUG(10, ("process_registry_globals: Ignoring " "parameter 'include' in registry.\n")); continue; -- cgit