From 12c2429a4242a157217c5bc9673a531fa1e1de61 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 1 Mar 2006 21:36:18 +0000 Subject: Fixup to make warnings from the last patch go away. --- networking/ifupdown.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'networking/ifupdown.c') 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) } else { /* Remove an interface from the linked list */ if (iface_state) { - const llist_t *link = iface_state->link; + llist_t *l = iface_state->link; free(iface_state->data); iface_state->data = NULL; iface_state->link = NULL; - if (link) { - iface_state->data = link->data; - iface_state->link = link->link; + if (l) { + iface_state->data = l->data; + iface_state->link = l->link; } - free(link); + free(l); } } } -- cgit v1.2.3