View | Details | Raw Unified
Collapse All | Expand All

(-) unixODBC-2.2.6/sqp/lex.l.orig (-2 / +1 lines)
 Lines 178-183    Link Here 
'[^'\n]*$	{ 
'[^'\n]*$	{ 
			yyerror( "Unterminated string" ); 
			yyerror( "Unterminated string" ); 
			YY_FLUSH_BUFFER;
		}
		}
 /***************************************
 /***************************************
 Lines 236-243    Link Here 
void yyerror( char *s )
void yyerror( char *s )
{
{
	sprintf( g_szError, "%s processing '%s' on line %d", s, yytext, g_nLineNo );
	sprintf( g_szError, "%s processing '%s' on line %d", s, yytext, g_nLineNo );
	
	YY_FLUSH_BUFFER;
}
}
/**********************************************************************
/**********************************************************************