From 4185837cd31f1c6f88750f36e10c6ab9118540a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 15 Apr 2008 13:09:09 +0000 Subject: [PATCH] rename yyerror to sel_yyerror in the whole library, not just the lexer git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22974 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/ChangeLog | 8 ++++++++ lib/hx509/sel-lex.l | 2 -- lib/hx509/sel.h | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/hx509/ChangeLog b/lib/hx509/ChangeLog index d300bbbcb..32f8d8d56 100644 --- a/lib/hx509/ChangeLog +++ b/lib/hx509/ChangeLog @@ -1,3 +1,11 @@ +2008-04-15 Love Hörnquist Åstrand + + * sel.h: rename yyerror to sel_yyerror in the whole library, not + just the lexer + + * sel-lex.l: rename yyerror to sel_yyerror in the whole library, + not just the lexer + 2008-04-08 Love Hörnquist Åstrand * hx509.h: Make self-standing by including missing files. diff --git a/lib/hx509/sel-lex.l b/lib/hx509/sel-lex.l index dc3999c09..94989761a 100644 --- a/lib/hx509/sel-lex.l +++ b/lib/hx509/sel-lex.l @@ -51,8 +51,6 @@ static void sel_yyerror (char *); struct hx_expr_input _hx509_expr_input; -#define yyerror(msg) sel_yyerror(msg ) - #define YY_NO_UNPUT 1 #undef YY_INPUT diff --git a/lib/hx509/sel.h b/lib/hx509/sel.h index 782d266fa..40c5f6406 100644 --- a/lib/hx509/sel.h +++ b/lib/hx509/sel.h @@ -68,3 +68,5 @@ struct hx_expr_input { extern struct hx_expr_input _hx509_expr_input; int yyparse(void); + +#define yyerror(msg) sel_yyerror(msg )