mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 16:15:27 +00:00
552. [bug] We were not correctly detecting the end of all c-style
comments. [RT #455]
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -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.
|
||||||
|
|
||||||
|
@@ -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:
|
||||||
|
Reference in New Issue
Block a user