Use _hx509_sel_yyerror() instead of error_message().

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23151 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-04-30 08:23:05 +00:00
parent 1b34818d1e
commit 9bca8b341f

View File

@@ -50,7 +50,6 @@ unsigned lineno = 1;
static char * handle_string(void); static char * handle_string(void);
static int lex_input(char *, int); static int lex_input(char *, int);
static void error_message (const char *format, ...);
struct hx_expr_input _hx509_expr_input; struct hx_expr_input _hx509_expr_input;
@@ -81,25 +80,6 @@ TAILMATCH { return kw_TAILMATCH; }
[ \t] ; [ \t] ;
%% %%
void
error_message (const char *format, ...)
{
va_list args;
if (_hx509_expr_input.error)
free(_hx509_expr_input.error);
va_start (args, format);
vasprintf(&_hx509_expr_input.error, format, args);
va_end (args);
}
void
_hx509_sel_yyerror (char *s)
{
error_message("%s", s);
}
static char * static char *
handle_string(void) handle_string(void)
{ {
@@ -115,7 +95,7 @@ handle_string(void)
continue; continue;
} }
if(c == '\n'){ if(c == '\n'){
error_message("unterminated string"); _hx509_sel_yyerror("unterminated string");
lineno++; lineno++;
break; break;
} }