aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-01 21:36:18 +0000
committerRob Landley <rob@landley.net>2006-03-01 21:36:18 +0000
commit12c2429a4242a157217c5bc9673a531fa1e1de61 (patch)
tree54bac9452060cd714d6019df8aa35b68151cc2fe
parent08abe64d9180d6d56c49900a2f89f3e9ff507201 (diff)
downloadbusybox-w32-12c2429a4242a157217c5bc9673a531fa1e1de61.tar.gz
busybox-w32-12c2429a4242a157217c5bc9673a531fa1e1de61.tar.bz2
busybox-w32-12c2429a4242a157217c5bc9673a531fa1e1de61.zip
Fixup to make warnings from the last patch go away.
-rw-r--r--networking/ifupdown.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 156ceb7ab..9e6fc6291 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1356,15 +1356,15 @@ extern int ifupdown_main(int argc, char **argv)
1356 } else { 1356 } else {
1357 /* Remove an interface from the linked list */ 1357 /* Remove an interface from the linked list */
1358 if (iface_state) { 1358 if (iface_state) {
1359 const llist_t *link = iface_state->link; 1359 llist_t *l = iface_state->link;
1360 free(iface_state->data); 1360 free(iface_state->data);
1361 iface_state->data = NULL; 1361 iface_state->data = NULL;
1362 iface_state->link = NULL; 1362 iface_state->link = NULL;
1363 if (link) { 1363 if (l) {
1364 iface_state->data = link->data; 1364 iface_state->data = l->data;
1365 iface_state->link = link->link; 1365 iface_state->link = l->link;
1366 } 1366 }
1367 free(link); 1367 free(l);
1368 } 1368 }
1369 } 1369 }
1370 } 1370 }