From 510e328967679812bd01479fd2b1f47602befa38 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Mon, 16 Feb 1998 18:05:06 +0000 Subject: [PATCH] Replace getc() with input(). git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4422 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/com_err/lex.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/com_err/lex.l b/lib/com_err/lex.l index c817773c0..1eff51d2c 100644 --- a/lib/com_err/lex.l +++ b/lib/com_err/lex.l @@ -82,7 +82,7 @@ getstring(void) int i = 0; int c; int quote = 0; - while((c = getc(yyin)) != EOF){ + while((c = input()) != EOF){ if(quote) { x[i++] = c; quote = 0;