From 0ceb14b9a4587528da9bb8551c725cceb0a1d067 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 5 Dec 2004 07:29:09 +0000 Subject: [PATCH] Consider a comment to start with ;-- but not if there are more dashes (bug #2977) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4389 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 6fbef3e188..1d0337acff 100755 --- a/config.c +++ b/config.c @@ -532,7 +532,7 @@ static struct ast_config *__ast_load(const char *configfile, struct ast_config * /* Yuck, gotta memmove */ memmove(comment_p - 1, comment_p, strlen(comment_p) + 1); new_buf = comment_p; - } else if(comment_p[1] == COMMENT_TAG && comment_p[2] == COMMENT_TAG) { + } else if(comment_p[1] == COMMENT_TAG && comment_p[2] == COMMENT_TAG && (comment_p[3] != '-')) { /* Meta-Comment start detected ";--" */ if (comment < MAX_NESTED_COMMENTS) { *comment_p = '\0';