summaryrefslogtreecommitdiff
path: root/src/cut.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cut.c')
-rw-r--r--src/cut.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cut.c b/src/cut.c
index 037aa070a..028945a52 100644
--- a/src/cut.c
+++ b/src/cut.c
@@ -29,7 +29,7 @@
#include <getopt.h>
#include <sys/types.h>
#include "system.h"
-#include "getstr.h"
+#include "getdelim2.h"
#include "closeout.h"
#include "error.h"
@@ -493,8 +493,8 @@ cut_fields (FILE *stream)
int len;
size_t n_bytes;
- len = getstr (&field_1_buffer, &field_1_bufsize, stream,
- delim, '\n', 0);
+ len = getdelim2 (&field_1_buffer, &field_1_bufsize, stream,
+ delim, '\n', 0);
if (len < 0)
{
if (ferror (stream) || feof (stream))