- output of newer lex 2.6.1 and bison 3.0.5.

git-svn-id: file:///svn/unbound/trunk@5078 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2019-01-25 13:00:09 +00:00
parent 062c2cacfc
commit aae44940c7
4 changed files with 539 additions and 537 deletions

View file

@ -4,6 +4,7 @@
- updated contrib/fastrpz.patch to cleanly diff.
- no lock when threads disabled in tcp request buffer count.
- remove compile warnings from libnettle compile.
- output of newer lex 2.6.1 and bison 3.0.5.
24 January 2018: Wouter
- Newer aclocal and libtoolize used for generating configure scripts,

View file

@ -5430,10 +5430,10 @@ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
yy_size_t i;
int i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = (yy_size_t) _yybytes_len + 2;
n = (yy_size_t) (_yybytes_len + 2);
buf = (char *) yyalloc(n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
/* A Bison parser, made by GNU Bison 3.0.4. */
/* A Bison parser, made by GNU Bison 3.0.5. */
/* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -582,11 +582,11 @@ extern int yydebug;
union YYSTYPE
{
#line 66 "./util/configparser.y" /* yacc.c:1909 */
#line 66 "./util/configparser.y" /* yacc.c:1910 */
char* str;
#line 590 "util/configparser.h" /* yacc.c:1909 */
#line 590 "util/configparser.h" /* yacc.c:1910 */
};
typedef union YYSTYPE YYSTYPE;