diff options
author | Martin Mares <mj@ucw.cz> | 1999-02-13 21:58:53 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-02-13 21:58:53 +0000 |
commit | d1f7eab6b5f1bd86a47402cb8fdb5cbcedc8947f (patch) | |
tree | 7bd180cc550f82570e7acaf8a5e078b6729cc089 /nest/rt-dev.c | |
parent | 726141746b7f86b02a902bd6b316792e4be0380c (diff) |
Parameter order for the proto->if_notify hook was different in the include
file and different in reality. Decided to use the same order as we do
for proto->rt_notify (i.e., first new value and second the old one).
Diffstat (limited to 'nest/rt-dev.c')
-rw-r--r-- | nest/rt-dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-dev.c b/nest/rt-dev.c index b6e8d708..ebe3a1a2 100644 --- a/nest/rt-dev.c +++ b/nest/rt-dev.c @@ -21,7 +21,7 @@ struct proto_config *cf_dev_proto; static void -dev_if_notify(struct proto *p, unsigned c, struct iface *old, struct iface *new) +dev_if_notify(struct proto *p, unsigned c, struct iface *new, struct iface *old) { struct rt_dev_config *P = (void *) p->cf; |