aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/ip.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-10-29 22:50:30 -0700
committerRob Landley <rob@landley.net>2019-11-03 19:03:07 -0600
commit3ead70e503b2809a250a70d161d525213f5328d8 (patch)
treed433896cf33abe4d37449e03d0080fb90691dfa9 /toys/pending/ip.c
parentdde512ac8001f5dc45de52fd82ccf6a8e5d4a138 (diff)
downloadtoybox-3ead70e503b2809a250a70d161d525213f5328d8.tar.gz
ip: remove get_line().
Diffstat (limited to 'toys/pending/ip.c')
-rw-r--r--toys/pending/ip.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/toys/pending/ip.c b/toys/pending/ip.c
index 82e18fdb..cc86c19f 100644
--- a/toys/pending/ip.c
+++ b/toys/pending/ip.c
@@ -181,11 +181,13 @@ static void send_nlmesg(int type, int flags, int family,
// Parse /etc/iproute2/RPDB_tables and prepare list.
static void parseRPDB(char *fname, struct arglist **list, int32_t size)
{
- char *line;
- int fd = open(fname, O_RDONLY);
+ FILE *fp = fopen(fname, "r");
+ char *line = 0;
+ size_t l = 0;
+ ssize_t len;
- if (fd < 0) return;
- for (; (line = get_line(fd)); free(line)) {
+ if (!fp) return;
+ while ((len = getline(&line, &l, fp)) > 0) {
char *ptr = line;
int32_t idx;
@@ -195,10 +197,8 @@ static void parseRPDB(char *fname, struct arglist **list, int32_t size)
(sscanf(ptr, "0x%x %s #", &idx, toybuf) != 2) &&
(sscanf(ptr, "%d %s\n", &idx, toybuf) != 2) &&
(sscanf(ptr, "%d %s #", &idx, toybuf) != 2)) {
- error_msg("Corrupted '%s' file", fname);
- xclose(fd);
- free(line);
- return;
+ error_msg("corrupt %s", fname);
+ break;
}
if (idx >= 0 && idx < size) {
int index = idx & (size-1);
@@ -208,7 +208,8 @@ static void parseRPDB(char *fname, struct arglist **list, int32_t size)
list[index]->name = xstrdup(toybuf);
}
}
- xclose(fd);
+ free(line);
+ fclose(fp);
}
static void free_alist(struct arglist **list)