From: Russell Bryant Date: Fri, 14 Dec 2007 17:49:28 +0000 (+0000) Subject: Print an error message if a #included file does not exist X-Git-Tag: 1.6.0-beta1~3^2~426 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e9f670e13e2a66f3d75a40f8dccb7e25c7e0a2f;p=thirdparty%2Fasterisk.git Print an error message if a #included file does not exist git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93004 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/config.c b/main/config.c index f2b54bc2d0..7e72e3681e 100644 --- a/main/config.c +++ b/main/config.c @@ -1007,8 +1007,10 @@ static int process_text_line(struct ast_config *cfg, struct ast_category **cat, do_include = ast_config_internal_load(cur, cfg, flags, real_inclusion_name) ? 1 : 0; if (!ast_strlen_zero(exec_file)) unlink(exec_file); - if (!do_include) + if (!do_include) { + ast_log(LOG_ERROR, "The file '%s' was listed as a #include but it does not exist.\n", cur); return -1; + } /* XXX otherwise what ? the default return is 0 anyways */ } else {