2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 23:55:27 +00:00

552. [bug] We were not correctly detecting the end of all c-style

comments.  [RT #455]
This commit is contained in:
Mark Andrews
2000-11-13 04:09:40 +00:00
parent ae7e8784aa
commit 733e928f71
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
552. [bug] We were not correctly detecting the end of all c-style
comments. [RT #455]
551. [func] Implemented the 'sortlist' option. 551. [func] Implemented the 'sortlist' option.

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: lex.c,v 1.42 2000/11/10 01:41:00 bwelling Exp $ */ /* $Id: lex.c,v 1.43 2000/11/13 04:09:40 marka Exp $ */
#include <config.h> #include <config.h>
@@ -668,7 +668,7 @@ isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
no_comments = ISC_FALSE; no_comments = ISC_FALSE;
state = saved_state; state = saved_state;
goto no_read; goto no_read;
} else } else if (c != '*')
state = lexstate_ccomment; state = lexstate_ccomment;
break; break;
case lexstate_eatline: case lexstate_eatline: