diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-16 18:24:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-16 18:24:57 +0000 |
commit | 4e33e07f6096f9fa8ebc04a29cee5c0b28ea13a6 (patch) | |
tree | b4b826f9131cc411148bc99f81ac74283122c84f /networking/ifupdown.c | |
parent | 5f03158f66dc2c73b052307f3871c4341fbabb8e (diff) |
strip -> $(STRIP); fix "unused variable" warning
(patch by Diekema, Jon (AGRE) <Jon.Diekema@smiths-aerospace.com>)
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 00eb576f4..45407f9f4 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -1099,7 +1099,6 @@ int ifupdown_main(int argc, char **argv) llist_t *target_list = NULL; const char *interfaces = "/etc/network/interfaces"; int any_failures = 0; - int i; if (applet_name[2] == 'u') { /* ifup command */ @@ -1188,6 +1187,7 @@ int ifupdown_main(int argc, char **argv) struct mapping_defn_t *currmap; for (currmap = defn->mappings; currmap; currmap = currmap->next) { + int i; for (i = 0; i < currmap->n_matches; i++) { if (fnmatch(currmap->match[i], liface, 0) != 0) continue; |