diff options
| author | Roy Marples <roy@marples.name> | 2009-01-27 20:57:27 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2009-01-27 20:57:27 +0000 |
| commit | 2c8b08062726e5bc09c61923118c8b111b82a2f0 (patch) | |
| tree | e975a8cb59ed88e0235b762a97229a831bc85751 | |
| parent | 146d8134bdcbb0d21b51f0da2d1b5a7ce30dbf07 (diff) | |
| download | dhcpcd-2c8b08062726e5bc09c61923118c8b111b82a2f0.tar.xz | |
We should state which interface we're removing the route from correctly.
| -rw-r--r-- | configure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.c b/configure.c index a5af5a2a..b336dcba 100644 --- a/configure.c +++ b/configure.c @@ -399,7 +399,7 @@ route_deleted(const struct rt *rt) f = find_route(routes, rt, &l, NULL); if (f == NULL) return 0; - desc_route("removing", f, rt->iface->name); + desc_route("removing", f, f->iface->name); if (l) l->next = f->next; else |
