s4-heimdal: lex_err_message() should not be static
authorAndrew Tridgell <tridge@samba.org>
Sat, 30 Oct 2010 04:47:21 +0000 (15:47 +1100)
committerAndrew Tridgell <tridge@samba.org>
Sat, 30 Oct 2010 12:49:02 +0000 (23:49 +1100)
source4/heimdal/lib/asn1/lex.l

index d5be97538f0847ebd236799342e13e0c86c78817..3507d64b3ad93ccdf5b84a535550eb64161c9c77 100644 (file)
@@ -50,7 +50,7 @@
 #include "lex.h"
 #include "gen_locl.h"
 
-static void lex_err_message (const char *format, ...);
+void lex_err_message (const char *format, ...);
 
 static unsigned lineno = 1;
 
@@ -283,7 +283,7 @@ yywrap ()
 }
 #endif
 
-static void
+void
 lex_err_message (const char *format, ...)
 {
     va_list args;