From 24d8e7d787aa1940030a1beaabdd4388588ca512 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 29 Oct 1999 06:50:17 +0000 Subject: Stuf --- sed.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sed.c') diff --git a/sed.c b/sed.c index a3e635d3a..0df53a7f8 100644 --- a/sed.c +++ b/sed.c @@ -126,7 +126,6 @@ extern int sed_main (int argc, char **argv) } } - fprintf(stderr, "argc=%d\n", argc); while (argc-- > 0) { name = *argv++; @@ -135,10 +134,9 @@ extern int sed_main (int argc, char **argv) perror (name); continue; } - fprintf(stderr, "filename is '%s'\n", name); - haystack = (char*)malloc( 80); - while (fgets (haystack, sizeof (haystack), fp)) { + haystack = (char*)malloc( BUF_SIZE); + while (fgets (haystack, BUF_SIZE-1, fp)) { foundOne = replace_match(haystack, needle, newNeedle, ignoreCase); if (noprintFlag==TRUE && foundOne==TRUE) -- cgit v1.2.3