summaryrefslogtreecommitdiffstats
path: root/usr.bin/grep/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/grep/util.c')
-rw-r--r--usr.bin/grep/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/grep/util.c b/usr.bin/grep/util.c
index 46b1dd8..4ab7b06 100644
--- a/usr.bin/grep/util.c
+++ b/usr.bin/grep/util.c
@@ -216,7 +216,7 @@ procfile(const char *fn)
else
break;
}
- if (ln.len > 0 && ln.dat[ln.len - 1] == '\n')
+ if (ln.len > 0 && ln.dat[ln.len - 1] == fileeol)
--ln.len;
ln.line_no++;
@@ -525,6 +525,6 @@ printline(struct str *line, int sep, regmatch_t *matches, int m)
}
} else {
fwrite(line->dat, line->len, 1, stdout);
- putchar('\n');
+ putchar(fileeol);
}
}
OpenPOWER on IntegriCloud