diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-06 20:47:53 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-06 20:47:53 +0000 |
commit | e747f62ed69504825beb2c52b8f0448b3d3b72ed (patch) | |
tree | 2dac3986903a6389c7a7bac584c9743ea1d6db43 /networking/ifupdown.c | |
parent | 339936be006c3695de5c93bc59707c3d853ae186 (diff) |
- mark TODO: use index_in_str_array()
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 02e13ed27..bd53f93e8 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -633,7 +633,7 @@ static const struct method_t *get_method(const struct address_family_t *af, char if (!name) return NULL; - + /* TODO: use index_in_str_array() */ for (i = 0; i < af->n_methods; i++) { if (strcmp(af->method[i].name, name) == 0) { return &af->method[i]; |