diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-28 10:33:50 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-28 10:33:50 +0000 |
commit | 340ad20a78f10a4be21172be6e09c39c3ba3ae93 (patch) | |
tree | be4d586da3f3ad91982adc6b6b13382987229b3f /programs/starter/lex.yy.c | |
parent | 83cb0b0e8cc1e97efdbf53c4e0a14121aef08b42 (diff) | |
download | strongswan-340ad20a78f10a4be21172be6e09c39c3ba3ae93.tar.bz2 strongswan-340ad20a78f10a4be21172be6e09c39c3ba3ae93.tar.xz |
- finished initial import of strongswan file tree
- removed a lot of old and unused stuff
Diffstat (limited to 'programs/starter/lex.yy.c')
-rw-r--r-- | programs/starter/lex.yy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/starter/lex.yy.c b/programs/starter/lex.yy.c index 1626f1050..20d2edb08 100644 --- a/programs/starter/lex.yy.c +++ b/programs/starter/lex.yy.c @@ -497,7 +497,7 @@ char *yytext; * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: lex.yy.c,v 1.4 2006/03/28 22:32:49 as Exp $ + * RCSID $Id: parser.l,v 1.5 2006/03/28 22:32:33 as Exp $ */ #include <string.h> @@ -1706,10 +1706,10 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ -YY_BUFFER_STATE yy_scan_string (yyconst char * __yystr ) +YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { - return yy_scan_bytes(__yystr,strlen(__yystr) ); + return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will |