diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/dc.c | 2 | ||||
-rw-r--r-- | miscutils/makedevs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index 612937556..193929c8e 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -204,7 +204,7 @@ int dc_main(int argc ATTRIBUTE_UNUSED, char **argv) char *line; char *cursor; char *token; - while ((line = xmalloc_getline(stdin)) != NULL) { + while ((line = xmalloc_fgetline(stdin)) != NULL) { cursor = line; while (1) { token = get_token(&cursor); diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 1f88f3428..43e4b8c4d 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c @@ -97,7 +97,7 @@ int makedevs_main(int argc, char **argv) printf("table=<stdin>\n"); } - while ((line = xmalloc_getline(table))) { + while ((line = xmalloc_fgetline(table)) != NULL) { char type; unsigned int mode = 0755; unsigned int major = 0; |