summaryrefslogtreecommitdiff
path: root/src/comm.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-18 07:37:29 +0000
committerJim Meyering <jim@meyering.net>2003-06-18 07:37:29 +0000
commit4f1ec3fd5446ccf1b15e2374566c1c93a25c46b0 (patch)
tree515131588d1efcfe444e77ad22f24f9633bc1658 /src/comm.c
parent9341d1f804522ed36abb0b61c73a96880c91ee93 (diff)
downloadcoreutils-4f1ec3fd5446ccf1b15e2374566c1c93a25c46b0.tar.xz
Reflect renaming: readline -> readlinebuffer.
Diffstat (limited to 'src/comm.c')
-rw-r--r--src/comm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comm.c b/src/comm.c
index 02066ec91..26716dfc1 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -159,7 +159,7 @@ compare_files (char **infiles)
return 1;
}
- thisline[i] = readline (thisline[i], streams[i]);
+ thisline[i] = readlinebuffer (thisline[i], streams[i]);
}
while (thisline[0] || thisline[1])
@@ -199,9 +199,9 @@ compare_files (char **infiles)
/* Step the file the line came from.
If the files match, step both files. */
if (order >= 0)
- thisline[1] = readline (thisline[1], streams[1]);
+ thisline[1] = readlinebuffer (thisline[1], streams[1]);
if (order <= 0)
- thisline[0] = readline (thisline[0], streams[0]);
+ thisline[0] = readlinebuffer (thisline[0], streams[0]);
}
/* Free all storage and close all input streams. */