Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-10-07 00:47:53 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-10-07 00:47:53 +0400
commite747f62ed69504825beb2c52b8f0448b3d3b72ed (patch)
tree2dac3986903a6389c7a7bac584c9743ea1d6db43 /networking/ifupdown.c
parent339936be006c3695de5c93bc59707c3d853ae186 (diff)
- mark TODO: use index_in_str_array()
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r--networking/ifupdown.c2
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];