diff options
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index c1dc1d3..00eb576 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -649,7 +649,7 @@ static struct interfaces_file_t *read_interfaces(const char *filename) f = xfopen(filename, "r"); - while ((buf = bb_get_chomped_line_from_file(f)) != NULL) { + while ((buf = xmalloc_getline(f)) != NULL) { char *buf_ptr = buf; firstword = next_word(&buf_ptr); |