From: Jason Parker Date: Thu, 14 Jun 2007 23:22:51 +0000 (+0000) Subject: Merged revisions 69469 via svnmerge from X-Git-Tag: 1.4.5~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbfc0c7daae7392b15b322daeb31f2acf38f3bbd;p=thirdparty%2Fasterisk.git Merged revisions 69469 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r69469 | qwell | 2007-06-14 18:21:45 -0500 (Thu, 14 Jun 2007) | 4 lines Fix an issue where the line number in an unterminated comment block error message would show the wrong line number. "Reported" to me on #asterisk (somebody posted an error message, and I happened to catch it) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@69470 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/config.c b/main/config.c index 845408861a..172b97de12 100644 --- a/main/config.c +++ b/main/config.c @@ -921,7 +921,7 @@ static struct ast_config *config_text_file_load(const char *database, const char fclose(f); } while(0); if (comment) { - ast_log(LOG_WARNING,"Unterminated comment detected beginning on line %d\n", nest[comment]); + ast_log(LOG_WARNING,"Unterminated comment detected beginning on line %d\n", nest[comment - 1]); } #ifdef AST_INCLUDE_GLOB if (!cfg)