sip_to_pjsip: Make multiline comment parsing consistent with Asterisk

In Asterisk configuration, a multiline comment starts with ;-- as long as it is
not followed by another dash (i.e. ;--- is not a multiline comment).

ASTERISK-28323 #close

Change-Id: I32dc38e0fac01d3c0805d27d35d2365a7c37ca72
This commit is contained in:
Sean Bright 2019-03-04 13:36:01 -05:00
parent 90f0f6659d
commit 0cfafb89b5
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ def remove_comment(line, is_comment):
return "", True
part = line.partition(COMMENT_START)
if part[1]:
if part[1] and not part[2].startswith('-'):
# found multi-line comment start check string before
# it to make sure there wasn't an eol comment in it
has_comment = part[0].partition(COMMENT)