summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/cvs/src/commit.c
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2012-03-04 04:05:15 +0000
committerfgsch <fgsch@openbsd.org>2012-03-04 04:05:15 +0000
commitf9bbbf4534171e957bb7652e706dd78782fbffa2 (patch)
tree3828b3cf6a92fdae28d55bf6c8000c490e4996d0 /gnu/usr.bin/cvs/src/commit.c
parentDocument sem_timedwait() (diff)
downloadwireguard-openbsd-f9bbbf4534171e957bb7652e706dd78782fbffa2.tar.xz
wireguard-openbsd-f9bbbf4534171e957bb7652e706dd78782fbffa2.zip
In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line(). Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.
Diffstat (limited to 'gnu/usr.bin/cvs/src/commit.c')
-rw-r--r--gnu/usr.bin/cvs/src/commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/src/commit.c b/gnu/usr.bin/cvs/src/commit.c
index 0fe9f9425d7..bb576d394ae 100644
--- a/gnu/usr.bin/cvs/src/commit.c
+++ b/gnu/usr.bin/cvs/src/commit.c
@@ -1482,7 +1482,7 @@ commit_filesdoneproc (callerdat, err, repository, update_dir, entries)
line = NULL;
line_chars_allocated = 0;
- line_length = getline (&line, &line_chars_allocated, fp);
+ line_length = get_line (&line, &line_chars_allocated, fp);
if (line_length > 0)
{
/* Remove any trailing newline. */