From 09d769057effce3a229517a08ad73be4f1fc4bd9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 19 Jun 2008 17:20:22 +0200 Subject: loadparm: don't treat a missing include file as an error in handle_include(). Michael (This used to be commit a8ef8870beb91fcd2745aa59de6c59b49ea00e39) --- 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 1ce88df400..ad0605d70b 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -6843,7 +6843,7 @@ static bool handle_include(int snum, const char *pszParmValue, char **ptr) DEBUG(2, ("Can't find include file %s\n", fname)); SAFE_FREE(fname); - return false; + return true; } /*************************************************************************** -- cgit