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-4.0.0alpha6~801^2~977 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09d769057effce3a229517a08ad73be4f1fc4bd9;p=thirdparty%2Fsamba.git loadparm: don't treat a missing include file as an error in handle_include(). Michael (This used to be commit a8ef8870beb91fcd2745aa59de6c59b49ea00e39) --- diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 1ce88df400c..ad0605d70b2 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; } /***************************************************************************