summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/cvs/src/wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/cvs/src/wrapper.c')
-rw-r--r--gnu/usr.bin/cvs/src/wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/src/wrapper.c b/gnu/usr.bin/cvs/src/wrapper.c
index 91fdbafbbd0..1ee4e656fb9 100644
--- a/gnu/usr.bin/cvs/src/wrapper.c
+++ b/gnu/usr.bin/cvs/src/wrapper.c
@@ -294,7 +294,7 @@ wrap_add_file (file, temp)
error (0, errno, "cannot open %s", file);
return;
}
- while (getline (&line, &line_allocated, fp) >= 0)
+ while (get_line (&line, &line_allocated, fp) >= 0)
wrap_add (line, temp);
if (line)
free (line);