aboutsummaryrefslogtreecommitdiff
path: root/toys/other/tac.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/tac.c')
-rw-r--r--toys/other/tac.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/other/tac.c b/toys/other/tac.c
index 9ebc7f69..538d1b0b 100644
--- a/toys/other/tac.c
+++ b/toys/other/tac.c
@@ -23,8 +23,9 @@ void do_tac(int fd, char *name)
// Read in lines
for (;;) {
struct arg_list *temp;
+ long len;
- if (!(c = get_line(fd))) break;
+ if (!(c = get_rawline(fd, &len, '\n'))) break;
temp = xmalloc(sizeof(struct arg_list));
temp->next = list;
@@ -35,7 +36,7 @@ void do_tac(int fd, char *name)
// Play them back.
while (list) {
struct arg_list *temp = list->next;
- xputs(list->arg);
+ xprintf("%s", list->arg);
free(list->arg);
free(list);
list = temp;