From: Michael Adam Date: Thu, 19 Jun 2008 15:20:22 +0000 (+0200) Subject: loadparm: don't treat a missing include file as an error in handle_include(). X-Git-Tag: samba-3.3.0pre1~840 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8ef8870beb91fcd2745aa59de6c59b49ea00e39;p=thirdparty%2Fsamba.git loadparm: don't treat a missing include file as an error in handle_include(). Michael --- diff --git a/source/param/loadparm.c b/source/param/loadparm.c index 1ce88df400c..ad0605d70b2 100644 --- a/source/param/loadparm.c +++ b/source/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; } /***************************************************************************