From aa1fe2fa2ca92f8dd9b027e826af529298e9db7b 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:28 +0000 Subject: [PATCH] Prefix sel_error with _hx509_ since its global on platforms w/o symbol versioning. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22978 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/sel-lex.l | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/hx509/sel-lex.l b/lib/hx509/sel-lex.l index 8df78585d..0f0f61bd4 100644 --- a/lib/hx509/sel-lex.l +++ b/lib/hx509/sel-lex.l @@ -47,7 +47,6 @@ unsigned lineno = 1; static char * handle_string(void); static int lex_input(char *, int); static void error_message (const char *format, ...); -void sel_yyerror (char *); struct hx_expr_input _hx509_expr_input; @@ -92,7 +91,7 @@ error_message (const char *format, ...) } void -sel_yyerror (char *s) +_hx509_sel_yyerror (char *s) { error_message("%s", s); }